diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | bd9e6617827818fd043452c08c606f07b78014a0 (patch) | |
tree | 425bb4c3168f9c02f10150f235d2cb998dcc6108 /kompare/kompareurldialog.h | |
download | tdesdk-bd9e6617827818fd043452c08c606f07b78014a0.tar.gz tdesdk-bd9e6617827818fd043452c08c606f07b78014a0.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdesdk@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kompare/kompareurldialog.h')
-rw-r--r-- | kompare/kompareurldialog.h | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/kompare/kompareurldialog.h b/kompare/kompareurldialog.h new file mode 100644 index 00000000..61db9974 --- /dev/null +++ b/kompare/kompareurldialog.h @@ -0,0 +1,76 @@ +/*************************************************************************** + kcompareurldialog.h - description + ------------------- + begin : Sun Mar 4 2001 + copyright : (C) 2001-2004 Otto Bruggeman + (C) 2001-2003 John Firebaugh + email : otto.bruggeman@home.nl + jfirebaugh@kde.org +****************************************************************************/ + +/*************************************************************************** +** +** 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 KOMPAREURLDIALOG_H +#define KOMPAREURLDIALOG_H + +#include <kdialogbase.h> +#include <kurl.h> + +class QGroupBox; + +class KComboBox; +class KConfig; +class KFileDialog; +class KURLComboBox; +class KURLRequester; + +class FilesPage; +class FilesSettings; +class DiffPage; +class DiffSettings; +class ViewPage; +class ViewSettings; + +class KompareURLDialog : public KDialogBase +{ + Q_OBJECT + +public: + KompareURLDialog( QWidget* parent = 0, const char* name = 0 ); + ~KompareURLDialog(); + + KURL getFirstURL() const; + KURL getSecondURL() const; + QString encoding() const; + + void setFirstGroupBoxTitle ( const QString& title ); + void setSecondGroupBoxTitle( const QString& title ); + + void setGroup( const QString& groupName ); + + void setFirstURLRequesterMode ( unsigned int mode ); + void setSecondURLRequesterMode( unsigned int mode ); + +protected slots: + virtual void slotOk(); + +private slots: + void slotEnableOk(); + +private: + FilesPage* m_filesPage; + FilesSettings* m_filesSettings; + DiffPage* m_diffPage; + DiffSettings* m_diffSettings; + ViewPage* m_viewPage; + ViewSettings* m_viewSettings; +}; + +#endif |