2006-06-09 05:58:31 +00:00
|
|
|
/***************************************************************************
|
|
|
|
librarydialog.h
|
|
|
|
-----------------
|
|
|
|
begin : Sun Jun 04 2006
|
|
|
|
copyright : (C) 2006 by Michael Margraf
|
|
|
|
email : michael.margraf@alumni.tu-berlin.de
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
/***************************************************************************
|
|
|
|
* *
|
|
|
|
* 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 LIBRARYDIALOG_H
|
|
|
|
#define LIBRARYDIALOG_H
|
|
|
|
|
2013-05-26 20:23:36 +02:00
|
|
|
#include <QDialog>
|
2013-05-27 08:37:27 +02:00
|
|
|
#include <QRegExp>
|
2013-05-26 20:23:36 +02:00
|
|
|
#include <QStringList>
|
2012-10-31 09:15:06 +01:00
|
|
|
#include <QLabel>
|
2013-05-26 16:09:26 +02:00
|
|
|
#include <QVBoxLayout>
|
2006-06-09 05:58:31 +00:00
|
|
|
|
|
|
|
class QLabel;
|
|
|
|
class QLineEdit;
|
|
|
|
class QPushButton;
|
2013-05-26 16:09:26 +02:00
|
|
|
class QVBoxLayout;
|
2006-06-09 05:58:31 +00:00
|
|
|
class QRadioButton;
|
2013-05-26 16:09:26 +02:00
|
|
|
class QGroupBox;
|
2006-06-09 05:58:31 +00:00
|
|
|
class QRegExpValidator;
|
|
|
|
|
|
|
|
|
|
|
|
class LibraryDialog : public QDialog {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
LibraryDialog(QWidget*);
|
|
|
|
~LibraryDialog();
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void slotDelete();
|
|
|
|
void slotRename();
|
|
|
|
|
|
|
|
private:
|
2013-05-26 20:23:36 +02:00
|
|
|
//QRadioButton *previousLib;
|
|
|
|
|
|
|
|
QList <QRadioButton*> radioButton;
|
2006-06-12 06:07:21 +00:00
|
|
|
|
2013-05-26 16:09:26 +02:00
|
|
|
QVBoxLayout *all; // the mother of all widgets
|
2013-05-26 20:23:36 +02:00
|
|
|
//Q3VBox *Dia_Box;
|
2006-06-09 05:58:31 +00:00
|
|
|
QLabel *theLabel;
|
|
|
|
QLineEdit *NameEdit;
|
2013-05-26 20:23:36 +02:00
|
|
|
//Q3VButtonGroup *toggleGroup;
|
|
|
|
QGroupBox *Group;
|
2006-06-09 05:58:31 +00:00
|
|
|
QPushButton *ButtDelete, *ButtRename, *ButtClose;
|
|
|
|
|
|
|
|
QRegExp Expr;
|
|
|
|
QRegExpValidator *Validator;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|