~dpm/qreator/snap

« back to all changes in this revision

Viewing changes to qreator_lib/AboutDialog.py

  • Committer: Stefan Schwarzburg
  • Date: 2012-10-30 08:57:13 UTC
  • mfrom: (89.7.4 qreator)
  • mto: (89.10.24 qreator_sms)
  • mto: This revision was merged to the branch mainline in revision 101.
  • Revision ID: stefan.schwarzburg@googlemail.com-20121030085713-2zk6dhgn13fqzx7g
added sms icons; added missing tools file; added a line to shrink the main window to a reasonable size...

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
2
 
### BEGIN LICENSE
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.
7
 
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.
12
 
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/>.
15
 
### END LICENSE
16
 
 
17
 
### DO NOT EDIT THIS FILE ###
18
 
 
19
 
from gi.repository import Gtk # pylint: disable=E0611
20
 
 
21
 
from . helpers import get_builder
22
 
 
23
 
class AboutDialog(Gtk.AboutDialog):
24
 
    __gtype_name__ = "AboutDialog"
25
 
 
26
 
    def __new__(cls):
27
 
        """Special static method that's automatically called by Python when 
28
 
        constructing a new instance of this class.
29
 
        
30
 
        Returns a fully instantiated AboutDialog object.
31
 
        """
32
 
        builder = get_builder('AboutQreatorDialog')
33
 
        new_object = builder.get_object("about_qreator_dialog")
34
 
        new_object.finish_initializing(builder)
35
 
        return new_object
36
 
 
37
 
    def finish_initializing(self, builder):
38
 
        """Called while initializing this instance in __new__
39
 
 
40
 
        finish_initalizing should be called after parsing the ui definition
41
 
        and creating a AboutDialog object with it in order
42
 
        to finish initializing the start of the new AboutQreatorDialog
43
 
        instance.
44
 
        
45
 
        Put your initialization code in here and leave __init__ undefined.
46
 
        """
47
 
        # Get a reference to the builder and set up the signals.
48
 
        self.builder = builder
49
 
        self.ui = builder.get_ui(self)
50