~ubuntu-branches/ubuntu/raring/openwalnut/raring

« back to all changes in this revision

Viewing changes to src/qt4gui/WSettingAction.cpp

  • Committer: Package Import Robot
  • Author(s): Sebastian Eichelbaum
  • Date: 2012-12-12 11:26:32 UTC
  • mfrom: (3.1.1 sid)
  • Revision ID: package-import@ubuntu.com-20121212112632-xhiuwkxuz5h0idkh
Tags: 1.3.1+hg5849-1
* Minor changes compared to 1.3.0 but included several bug fixes.
* See http://www.openwalnut.org/versions/4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//---------------------------------------------------------------------------
 
2
//
 
3
// Project: OpenWalnut ( http://www.openwalnut.org )
 
4
//
 
5
// Copyright 2009 OpenWalnut Community, BSV@Uni-Leipzig and CNCF@MPI-CBS
 
6
// For more information see http://www.openwalnut.org/copying
 
7
//
 
8
// This file is part of OpenWalnut.
 
9
//
 
10
// OpenWalnut is free software: you can redistribute it and/or modify
 
11
// it under the terms of the GNU Lesser General Public License as published by
 
12
// the Free Software Foundation, either version 3 of the License, or
 
13
// (at your option) any later version.
 
14
//
 
15
// OpenWalnut is distributed in the hope that it will be useful,
 
16
// but WITHOUT ANY WARRANTY; without even the implied warranty of
 
17
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
18
// GNU Lesser General Public License for more details.
 
19
//
 
20
// You should have received a copy of the GNU Lesser General Public License
 
21
// along with OpenWalnut. If not, see <http://www.gnu.org/licenses/>.
 
22
//
 
23
//---------------------------------------------------------------------------
 
24
 
 
25
#include <string>
 
26
 
 
27
#include "WMainWindow.h"
 
28
#include "WSettingAction.h"
 
29
#include "WSettingAction.moc"
 
30
 
 
31
WSettingAction::WSettingAction( QObject* parent, std::string settingName, std::string actionName, std::string tooltip, bool defaultValue,
 
32
                                bool showRestartInfo, const QKeySequence& shortcut ):
 
33
    QAction( QString::fromStdString( actionName ), parent ),
 
34
    m_settingName( QString::fromStdString( settingName ) ),
 
35
    m_showRestartInfo( showRestartInfo )
 
36
{
 
37
    // set the user-specified shortcut
 
38
    QList<QKeySequence> shortcuts;
 
39
    shortcuts.push_back( shortcut );
 
40
    setShortcuts( shortcuts );
 
41
 
 
42
    // binary action
 
43
    setCheckable( true );
 
44
 
 
45
    setToolTip( QString::fromStdString( tooltip ) );
 
46
 
 
47
    // set with current value
 
48
    setChecked( WQt4Gui::getSettings().value( QString::fromStdString( settingName ), defaultValue ).toBool() );
 
49
 
 
50
    // handle the change
 
51
    connect( this, SIGNAL( toggled( bool ) ), this, SLOT( stateChange( bool ) ) );
 
52
}
 
53
 
 
54
WSettingAction::~WSettingAction()
 
55
{
 
56
}
 
57
 
 
58
bool WSettingAction::get() const
 
59
{
 
60
    return isChecked();
 
61
}
 
62
 
 
63
void WSettingAction::stateChange( bool state )
 
64
{
 
65
    // store the value
 
66
    WQt4Gui::getSettings().setValue( m_settingName, state );
 
67
 
 
68
    // does this setting require restart?
 
69
    if( m_showRestartInfo )
 
70
    {
 
71
        QMessageBox::information( WQt4Gui::getMainWindow(), QString( "Restart required" ), QString( "This setting is applied after restart." ) );
 
72
    }
 
73
 
 
74
    emit change( state );
 
75
}
 
76