~ubuntu-branches/ubuntu/utopic/kdebase/utopic

« back to all changes in this revision

Viewing changes to konqueror/settings/kio/kcookiesmain.h

  • Committer: Bazaar Package Importer
  • Author(s): Debian Qt/KDE Maintainers, José Manuel Santamaría Lema, Modestas Vainius
  • Date: 2011-05-26 02:53:50 UTC
  • mfrom: (0.7.7 upstream) (0.4.5 experimental)
  • mto: This revision was merged to the branch mainline in revision 296.
  • Revision ID: james.westby@ubuntu.com-20110526025350-7o10g65yegec2rnq
Tags: 4:4.6.3-1
* New upstream release.

[ José Manuel Santamaría Lema ]
* Bump kde-sc-dev-latest build dependency to 4:4.6.3.
* Bump Standards-Version to 3.9.2; no changes needed.

[ Modestas Vainius ]
* Enable DLRestrictions for libraries in this package. Requires
  libdlrestrictions-dev 0.14 and kdelibs5-dev 4:4.6.3.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*    kcookiesmain.h - Cookies configuration
 
2
 *
 
3
 *    First version of cookies configuration:
 
4
 *        Copyright (C) Waldo Bastian <bastian@kde.org>
 
5
 *    This dialog box:
 
6
 *        Copyright (C) David Faure <faure@kde.org>
 
7
 *
 
8
 */
 
9
 
 
10
#ifndef __KCOOKIESMAIN_H
 
11
#define __KCOOKIESMAIN_H
 
12
 
 
13
#include <kcmodule.h>
 
14
 
 
15
class QTabWidget;
 
16
class KCookiesPolicies;
 
17
class KCookiesManagement;
 
18
 
 
19
class KCookiesMain : public KCModule
 
20
{
 
21
    Q_OBJECT
 
22
public:
 
23
    KCookiesMain(QWidget *parent, const QVariantList &args);
 
24
    ~KCookiesMain();
 
25
 
 
26
    KCookiesPolicies* policyDlg() { return policies; }
 
27
 
 
28
    virtual void save();
 
29
    virtual void defaults();
 
30
    virtual QString quickHelp() const;
 
31
 
 
32
private:
 
33
 
 
34
    QTabWidget* tab;
 
35
    KCookiesPolicies* policies;
 
36
    KCookiesManagement* management;
 
37
};
 
38
 
 
39
#endif // __KCOOKIESMAIN_H