You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
1.4 KiB
70 lines
1.4 KiB
/* -------------------------------------------------------------
|
|
|
|
sets.h (part of The KDE Dictionary Client)
|
|
|
|
Copyright (C) 2000-2001 Christian Gebauer <gebauer@kde.org>
|
|
|
|
This file is distributed under the Artistic License.
|
|
See LICENSE for details.
|
|
|
|
-------------------------------------------------------------
|
|
|
|
dbSetsDialog dialog for editing the user defined database sets
|
|
|
|
------------------------------------------------------------- */
|
|
|
|
#ifndef _KDICT_SETS_H_
|
|
#define _KDICT_SETS_H_
|
|
|
|
#include <kdialogbase.h>
|
|
|
|
class TQListBox;
|
|
|
|
|
|
//********* DbSetsDialog ******************************************
|
|
|
|
|
|
class DbSetsDialog : public KDialogBase
|
|
{
|
|
Q_OBJECT
|
|
|
|
|
|
public:
|
|
|
|
DbSetsDialog(TQWidget *parent=0, const char *name=0);
|
|
|
|
signals:
|
|
|
|
void setsChanged();
|
|
void dialogClosed();
|
|
|
|
protected:
|
|
void hideEvent(TQHideEvent *);
|
|
|
|
private slots:
|
|
|
|
void newPressed();
|
|
void deletePressed();
|
|
void allLeftPressed();
|
|
void leftPressed();
|
|
void rightPressed();
|
|
void allRightPressed();
|
|
void closePressed();
|
|
void transferSet();
|
|
void activateSet(int num);
|
|
void leftSelected(int index);
|
|
void rightSelected(int index);
|
|
void leftHighlighted(int index);
|
|
void rightHighlighted(int index);
|
|
|
|
private:
|
|
|
|
void checkButtons();
|
|
|
|
TQComboBox *w_set;
|
|
TQListBox *w_leftBox, *w_rightBox;
|
|
TQPushButton *w_delete,*w_save,*w_allLeft,*w_left,*w_right,*w_allRight;
|
|
};
|
|
|
|
#endif
|