dolphin/konqueror/settings/kio/useragentselectordlg.h
Dawit Alemayehu c5012ab5c4 - Renamed policydlg.* to kcookiespolicyselectiondlg.*
- Reformatted code to adhere to kde coding style.
- Cleaned up code.
2011-09-15 13:32:27 -04:00

55 lines
1.5 KiB
C++

/**
* Copyright (c) 2001 Dawit Alemayehu <adawit@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.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#ifndef USERAGENTSELECTORDLG_H
#define USERAGENTSELECTORDLG_H
// KDE
#include <kdialog.h>
#include "ui_useragentselectordlg.h"
// Forward declarations
class UserAgentInfo;
class UserAgentSelectorDlg : public KDialog
{
Q_OBJECT
public:
explicit UserAgentSelectorDlg (UserAgentInfo* info, QWidget* parent = 0, Qt::WindowFlags f = 0);
~UserAgentSelectorDlg();
void setSiteName (const QString&);
void setIdentity (const QString&);
QString siteName();
QString identity();
QString alias();
protected Q_SLOTS:
void onHostNameChanged (const QString&);
void onAliasChanged (const QString&);
private:
UserAgentInfo* mUserAgentInfo;
Ui::UserAgentSelectorUI mUi;
};
#endif // USERAGENTSELECTORDLG_H