1
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
3
# Copyright (C) 2012 David Planella <david.planella@ubuntu.com>
4
# This program is free software: you can redistribute it and/or modify it
5
# under the terms of the GNU General Public License version 3, as published
6
# by the Free Software Foundation.
8
# This program is distributed in the hope that it will be useful, but
9
# WITHOUT ANY WARRANTY; without even the implied warranties of
10
# MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
11
# PURPOSE. See the GNU General Public License for more details.
13
# You should have received a copy of the GNU General Public License along
14
# with this program. If not, see <http://www.gnu.org/licenses/>.
17
### DO NOT EDIT THIS FILE ###
19
"""this dialog adjusts values in gsettings
22
from gi.repository import Gtk # pylint: disable=E0611
24
logger = logging.getLogger('qreator_lib')
26
from . helpers import get_builder, show_uri, get_help_uri
28
class PreferencesDialog(Gtk.Dialog):
29
__gtype_name__ = "PreferencesDialog"
32
"""Special static method that's automatically called by Python when
33
constructing a new instance of this class.
35
Returns a fully instantiated PreferencesDialog object.
37
builder = get_builder('PreferencesQreatorDialog')
38
new_object = builder.get_object("preferences_qreator_dialog")
39
new_object.finish_initializing(builder)
42
def finish_initializing(self, builder):
43
"""Called while initializing this instance in __new__
45
finish_initalizing should be called after parsing the ui definition
46
and creating a PreferencesDialog object with it in order to
47
finish initializing the start of the new PerferencesQreatorDialog
50
Put your initialization code in here and leave __init__ undefined.
53
# Get a reference to the builder and set up the signals.
54
self.builder = builder
55
self.ui = builder.get_ui(self, True)
57
# code for other initialization actions should be added here
59
def on_btn_close_clicked(self, widget, data=None):
62
def on_btn_help_clicked(self, widget, data=None):
63
show_uri(self, "ghelp:%s" % get_help_uri('preferences'))