[go: up one dir, main page]

Menu

[a2a8f0]: / noteselection.h  Maximize  Restore  History

Download this file

33 lines (24 with data), 585 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#ifndef NOTESELECTION_H
#define NOTESELECTION_H
#include <QDialog>
namespace Ui {
class noteSelection;
}
class noteSelection : public QDialog
{
Q_OBJECT
public:
explicit noteSelection(QWidget *parent = 0);
~noteSelection();
void AddItem(QString txt,bool Checkable,bool Checked);
void SetMatchList(bool* matchList);
void GetSelectedList(bool* selectedList);
private:
Ui::noteSelection *ui;
bool* m_mtchList;
private slots:
void CheckAll(void);
void DecheckAll(void);
void CheckAllDifferent(void);
};
#endif // NOTESELECTION_H