~ubuntu-branches/ubuntu/lucid/skrooge/lucid

« back to all changes in this revision

Viewing changes to skgbasegui/skgwidget.h

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Mercatante
  • Date: 2010-02-07 19:00:01 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20100207190001-apq0bzl80p0tyr8s
Tags: 0.6.0-0ubuntu1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/***************************************************************************
2
 
 *   Copyright (C) 2008 by S. MANKOWSKI / G. DE BURE skrooge@miraks.com    *
 
2
 *   Copyright (C) 2008 by S. MANKOWSKI / G. DE BURE skrooge@mankowski.fr  *
3
3
 *                                                                         *
4
4
 *   This program is free software; you can redistribute it and/or modify  *
5
5
 *   it under the terms of the GNU General Public License as published by  *
23
23
 */
24
24
#include <kglobal.h>
25
25
#include <QWidget>
26
 
 
 
26
#include "skgbasegui_export.h"
27
27
class SKGDocument;
28
28
 
29
29
/**
30
 
 * This file is Skrooge tab widget used by plugins
 
30
 * This file is a tab widget used by plugins
31
31
 */
32
 
class KDE_EXPORT SKGWidget : public QWidget
 
32
class SKGBASEGUI_EXPORT SKGWidget : public QWidget
33
33
{
34
34
        Q_OBJECT
35
35
 
48
48
         * Get main document
49
49
         * @return pointer on main document
50
50
         */
51
 
        virtual SKGDocument* getDocument();
 
51
        virtual SKGDocument* getDocument() const;
52
52
 
53
53
        /**
54
54
         * Get the current state
70
70
         * MUST BE OVERWRITTEN
71
71
         * @return attribute name to save the default state.
72
72
         */
73
 
        virtual QString getDefaultStateAttibute();
 
73
        virtual QString getDefaultStateAttribute();
74
74
 
75
75
private:
76
76
        Q_DISABLE_COPY(SKGWidget);