MCPcopy Create free account
hub / github.com/YACReader/yacreader / AddLabelDialog

Class AddLabelDialog

YACReaderLibrary/add_label_dialog.h:12–35  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10#include <QPushButton>
11
12class AddLabelDialog : public QDialog, protected Themable
13{
14 Q_OBJECT
15public:
16 explicit AddLabelDialog(QWidget *parent = nullptr);
17 YACReader::LabelColors selectedColor();
18 QString name();
19signals:
20
21public slots:
22 int exec() override;
23
24protected slots:
25 void validateName(const QString &name);
26
27protected:
28 void applyTheme(const Theme &theme) override;
29
30 QLineEdit *edit;
31 QListWidget *list;
32
33 QPushButton *acceptButton;
34 QPushButton *cancelButton;
35};
36
37#endif // ADD_LABEL_DIALOG_H

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected