~ubuntu-branches/ubuntu/utopic/kde-workspace/utopic-proposed

« back to all changes in this revision

Viewing changes to kwin/effects/_test/videorecord_config.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Michał Zając
  • Date: 2011-07-09 08:31:15 UTC
  • Revision ID: james.westby@ubuntu.com-20110709083115-ohyxn6z93mily9fc
Tags: upstream-4.6.90
Import upstream version 4.6.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/********************************************************************
 
2
 KWin - the KDE window manager
 
3
 This file is part of the KDE project.
 
4
 
 
5
Copyright (C) 2007 Rivo Laks <rivolaks@hot.ee>
 
6
 
 
7
This program is free software; you can redistribute it and/or modify
 
8
it under the terms of the GNU General Public License as published by
 
9
the Free Software Foundation; either version 2 of the License, or
 
10
(at your option) any later version.
 
11
 
 
12
This program is distributed in the hope that it will be useful,
 
13
but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
GNU General Public License for more details.
 
16
 
 
17
You should have received a copy of the GNU General Public License
 
18
along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
19
*********************************************************************/
 
20
 
 
21
#include "videorecord_config.h"
 
22
 
 
23
#include <kwineffects.h>
 
24
 
 
25
#include <klocale.h>
 
26
#include <kdebug.h>
 
27
#include <KActionCollection>
 
28
#include <kaction.h>
 
29
#include <KShortcutsEditor>
 
30
#include <KUrlRequester>
 
31
#include <QLabel>
 
32
#include <KGlobalSettings>
 
33
#include <KConfigGroup>
 
34
 
 
35
#include <QVBoxLayout>
 
36
#include <QHBoxLayout>
 
37
#ifndef KDE_USE_FINAL
 
38
KWIN_EFFECT_CONFIG_FACTORY
 
39
#endif
 
40
K_PLUGIN_FACTORY_DEFINITION(EffectFactory,
 
41
                            registerPlugin<KWin::VideoRecordEffectConfig>("videorecord");
 
42
                           )
 
43
K_EXPORT_PLUGIN(EffectFactory("kwin"))
 
44
 
 
45
namespace KWin
 
46
{
 
47
 
 
48
VideoRecordEffectConfig::VideoRecordEffectConfig(QWidget* parent, const QVariantList& args) :
 
49
    KCModule(EffectFactory::componentData(), parent, args)
 
50
{
 
51
    QVBoxLayout* layout = new QVBoxLayout(this);
 
52
    QHBoxLayout* hlayout = new QHBoxLayout(this);
 
53
    QLabel *label = new QLabel(i18n("Path to save video:"), this);
 
54
    hlayout->addWidget(label);
 
55
    saveVideo = new KUrlRequester(this);
 
56
    saveVideo->setMode(KFile::Directory | KFile::LocalOnly);
 
57
    hlayout->addWidget(saveVideo);
 
58
    layout->addLayout(hlayout);
 
59
 
 
60
    // Shortcut config. The shortcut belongs to the component "kwin"!
 
61
    KActionCollection* actionCollection = new KActionCollection(this, KComponentData("kwin"));
 
62
 
 
63
    KAction* a = static_cast<KAction*>(actionCollection->addAction("VideoRecord"));
 
64
    a->setText(i18n("Toggle Video Recording"));
 
65
    a->setProperty("isConfigurationAction", true);
 
66
    a->setGlobalShortcut(KShortcut(Qt::CTRL + Qt::META + Qt::Key_V));
 
67
 
 
68
    mShortcutEditor = new KShortcutsEditor(actionCollection, this,
 
69
                                           KShortcutsEditor::GlobalAction, KShortcutsEditor::LetterShortcutsDisallowed);
 
70
    layout->addWidget(mShortcutEditor);
 
71
 
 
72
    connect(saveVideo, SIGNAL(textChanged(const QString&)), this, SLOT(changed()));
 
73
    connect(mShortcutEditor, SIGNAL(keyChange()), this, SLOT(changed()));
 
74
 
 
75
    layout->addStretch();
 
76
 
 
77
    load();
 
78
}
 
79
 
 
80
VideoRecordEffectConfig::~VideoRecordEffectConfig()
 
81
{
 
82
    // Undo (only) unsaved changes to global key shortcuts
 
83
    mShortcutEditor->undoChanges();
 
84
}
 
85
 
 
86
void VideoRecordEffectConfig::load()
 
87
{
 
88
    KCModule::load();
 
89
 
 
90
    KConfigGroup conf = EffectsHandler::effectConfig("VideoRecord");
 
91
    saveVideo->setPath(conf.readEntry("videopath", KGlobalSettings::documentPath()));
 
92
    emit changed(false);
 
93
}
 
94
 
 
95
void VideoRecordEffectConfig::save()
 
96
{
 
97
    KCModule::save();
 
98
 
 
99
    KConfigGroup conf = EffectsHandler::effectConfig("VideoRecord");
 
100
 
 
101
    if (saveVideo->url().isEmpty())
 
102
        conf.writeEntry("videopath", KGlobalSettings::documentPath());
 
103
    else
 
104
        conf.writeEntry("videopath", saveVideo->url().path());
 
105
 
 
106
    conf.sync();
 
107
 
 
108
    mShortcutEditor->save();    // undo() will restore to this state from now on
 
109
 
 
110
    emit changed(false);
 
111
    EffectsHandler::sendReloadMessage("videorecord");
 
112
}
 
113
 
 
114
void VideoRecordEffectConfig::defaults()
 
115
{
 
116
    saveVideo->setPath(KGlobalSettings::documentPath());
 
117
    mShortcutEditor->allDefault();
 
118
    emit changed(true);
 
119
}
 
120
 
 
121
 
 
122
} // namespace
 
123
 
 
124
#include "videorecord_config.moc"