goldendict-ng/src/ui/stylescombobox.hh
shenleban tongying 618310f772
Some checks are pending
SonarCloud / Build and analyze (push) Waiting to run
clean: just use #pragma once
2024-11-06 22:53:04 -05:00

27 lines
570 B
C++

/* Part of GoldenDict. Licensed under GPLv3 or later, see the LICENSE file */
#pragma once
#include <QComboBox>
#include <QString>
/// This is a combo box which is for choosing the add-on styles
class StylesComboBox: public QComboBox
{
Q_OBJECT
public:
StylesComboBox( QWidget * parent );
/// Fills combo-box with the given groups
void fill();
/// Chooses the given style in the combobox. If there's no such style,
/// set to "None".
void setCurrentStyle( QString const & style );
/// Returns current style.
QString getCurrentStyle() const;
};