-
Notifications
You must be signed in to change notification settings - Fork 0
/
bmdialog.h
62 lines (42 loc) · 1.09 KB
/
bmdialog.h
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/*
ZHSC
bmdialog.h
v 0.0.1
2003/06/23
Copyright (C) 2003 Cavendish
cavendish@qiliang.net
http://www.qiliang.net/software/zhsc.html
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
*/
#ifndef BMDIALOG_H
#define BMDIALOG_H
#include <qdialog.h>
#include <qtable.h>
#include <qpushbutton.h>
#include <qsize.h>
#include "bookmark.h"
class BMDialog : public QDialog
{
Q_OBJECT
public:
BMDialog( QWidget* parent, const char* name );
~BMDialog();
void setBML( BookmarkList b );
BookmarkList deletedBML() const;
//virtual QSize sizeHint() const { return s; }
//virtual QSize minimumSizeHint() const { return s; }
protected slots:
virtual void accept();
private:
QTable *table;
QPushButton *pbDelete;
QPushButton *pbCancel;
BookmarkList bml;
BookmarkList dbml;
CTIPList cl;
QSize s;
};
#endif //BMDIALOG