~dpm/qreator/snap

« back to all changes in this revision

Viewing changes to qreator/__init__.py

  • Committer: David Planella
  • Date: 2012-05-30 08:33:06 UTC
  • Revision ID: david.planella@ubuntu.com-20120530083306-2naqmakzg56jh5mx
Decoupled QR code types from the QR window and from a particular GUI toolkit (right now only GTK is supported)

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
import optparse
18
18
 
19
19
from qreator_lib.i18n import _
20
 
 
21
 
from gi.repository import GtkClutter
22
 
## Needs to be called here, otherwise the GtkChamplain widget needs to be
23
 
## explicitly connected to signals and methods defined
24
 
GtkClutter.init([])
25
20
from gi.repository import Gtk  # pylint: disable=E0611
26
 
 
27
21
from qreator import QreatorWindow
28
 
 
29
22
from qreator_lib import set_up_logging, get_version
30
23
 
31
24