~ubuntu-branches/ubuntu/feisty/kdetv/feisty

« back to all changes in this revision

Viewing changes to kdetv/plugins/misc/channelsuite/channelsuite.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2005-09-17 23:25:16 UTC
  • Revision ID: james.westby@ubuntu.com-20050917232516-9wdsn3ckagbqieh8
Tags: upstream-0.8.8
ImportĀ upstreamĀ versionĀ 0.8.8

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// -*- c++ -*-
 
2
/***************************************************************************
 
3
                           channelsuite.h
 
4
                           --------------
 
5
    begin                : Sat Apr 10 2004
 
6
    copyright            : (C) 2004 by Dirk Ziegelmeier
 
7
    email                : dziegel@gmx.de
 
8
***************************************************************************/
 
9
 
 
10
/*
 
11
 * This library is free software; you can redistribute it and/or
 
12
 * modify it under the terms of the GNU Library General Public
 
13
 * License as published by the Free Software Foundation; either
 
14
 * version 2 of the License, or (at your option) any later version.
 
15
 *
 
16
 * This library is distributed in the hope that it will be useful,
 
17
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
18
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
19
 * Library General Public License for more details.
 
20
 *
 
21
 * You should have received a copy of the GNU Library General Public License
 
22
 * along with this library; see the file COPYING.LIB.  If not, write to
 
23
 * the Free Software Foundation, Inc., 51 Franklin Steet, Fifth Floor,
 
24
 * Boston, MA 02110-1301, USA.
 
25
 */
 
26
 
 
27
#ifndef KDETV_CHANNELSUITE_PLUGIN_H
 
28
#define KDETV_CHANNELSUITE_PLUGIN_H
 
29
 
 
30
#include <kdetvmiscplugin.h>
 
31
#include <kxmlguiclient.h>
 
32
 
 
33
class KAction;
 
34
 
 
35
class ChannelSuitePlugin : public KdetvMiscPlugin, virtual public KXMLGUIClient
 
36
{
 
37
    Q_OBJECT
 
38
 
 
39
public:
 
40
    ChannelSuitePlugin( Kdetv *ktv, QWidget* parent );
 
41
    virtual ~ChannelSuitePlugin();
 
42
 
 
43
    virtual void installGUIElements(KXMLGUIFactory * guiFactory,
 
44
                                    KActionCollection *actionCollection);
 
45
    
 
46
    virtual void removeGUIElements(KXMLGUIFactory * guiFactory,
 
47
                                   KActionCollection *actionCollection);
 
48
 
 
49
 
 
50
private slots:
 
51
    void showDialog();
 
52
 
 
53
 
 
54
private:
 
55
    KAction* _showAction;
 
56
};
 
57
 
 
58
#endif
 
59
 
 
60
// vim: ts=4 sw=4 et