summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-gutenbrowser/editTitle.h
blob: 2480a01c8725899209cb760ca22d9ea0b8e86479 (plain)
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
/****************************************************************************
** Created: Thu Jan 24 08:47:13 2002
    copyright            : (C) 2000 -2004 by llornkcor
    email                : ljp@llornkcor.com
****************************************************************************/
#ifndef EDIT_TITLE_H
#define EDIT_TITLE_H

#include <qvariant.h>
#include <qdialog.h>
class QVBoxLayout; 
class QHBoxLayout; 
class QGridLayout; 
class QLineEdit;
class QPushButton;

class Edit_Title : public QDialog
{ 
    Q_OBJECT

public:
    Edit_Title( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0);
    ~Edit_Title();

    QLineEdit* LineEdit1;
    QPushButton* PushButton_Cancel;
    QPushButton* PushButton_Apply;
    QString newTitle;
public slots:
    void onCancel();
    void onApply(); 
};

#endif // EDIT_TITLE_H