~ubuntu-branches/ubuntu/lucid/kdemultimedia/lucid-proposed

« back to all changes in this revision

Viewing changes to dragonplayer/src/app/fullScreenAction.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Thomas
  • Date: 2009-06-04 20:53:28 UTC
  • mfrom: (1.2.26 upstream)
  • Revision ID: james.westby@ubuntu.com-20090604205328-lq73qq7d863idry1
Tags: 4:4.2.90-0ubuntu1
* New upstream beta release:
  - Bump build-depend versions
  - Drop kubuntu_03_dragonplayer_10_second_jump.diff, applied upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/***********************************************************************
2
 
 * Copyright 2005  Max Howell <max.howell@methylblue.com>
3
 
 *           2007  Ian Monroe <ian@monroe.nu>
4
 
 *
5
 
 * This program is free software; you can redistribute it and/or
6
 
 * modify it under the terms of the GNU General Public License as
7
 
 * published by the Free Software Foundation; either version 2 of
8
 
 * the License or (at your option) version 3 or any later version
9
 
 * accepted by the membership of KDE e.V. (or its successor approved
10
 
 * by the membership of KDE e.V.), which shall act as a proxy 
11
 
 * defined in Section 14 of version 3 of the license.
12
 
 *
13
 
 * This program is distributed in the hope that it will be useful,
14
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
 
 * GNU General Public License for more details.
17
 
 *
18
 
 * You should have received a copy of the GNU General Public License
19
 
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
 
 ***********************************************************************/
21
 
 
22
 
#ifndef DRAGONPLAYER_FULLSCREENACTION_H
23
 
#define DRAGONPLAYER_FULLSCREENACTION_H
24
 
 
25
 
#include <KToggleFullScreenAction>
26
 
 
27
 
class KActionCollection;
28
 
 
29
 
/**
30
 
 * @class FullScreenAction
31
 
 * @author Ian Monroe
32
 
 */
33
 
class FullScreenAction : public KToggleFullScreenAction
34
 
{
35
 
Q_OBJECT
36
 
public:
37
 
    FullScreenAction( QWidget *window, KActionCollection* );
38
 
    void setWidgetVisibility( bool );
39
 
};
40
 
 
41
 
#endif