1 /* -------------------------------------------------------------
3 sets.h (part of The KDE Dictionary Client)
5 Copyright (C) 2000-2001 Christian Gebauer <gebauer@kde.org>
7 This file is distributed under the Artistic License.
8 See LICENSE for details.
10 -------------------------------------------------------------
12 dbSetsDialog dialog for editing the user defined database sets
14 ------------------------------------------------------------- */
16 #ifndef _KDICT_SETS_H_
17 #define _KDICT_SETS_H_
19 #include <kdialogbase.h>
24 //********* DbSetsDialog ******************************************
27 class DbSetsDialog
: public KDialogBase
33 DbSetsDialog(QWidget
*parent
=0, const char *name
=0);
41 void hideEvent(QHideEvent
*);
47 void allLeftPressed();
50 void allRightPressed();
53 void activateSet(int num
);
54 void leftSelected(int index
);
55 void rightSelected(int index
);
56 void leftHighlighted(int index
);
57 void rightHighlighted(int index
);
64 QListBox
*w_leftBox
, *w_rightBox
;
65 QPushButton
*w_delete
,*w_save
,*w_allLeft
,*w_left
,*w_right
,*w_allRight
;