HomeSort by relevance Sort by last modified time
    Searched refs:gtk (Results 1 - 25 of 65) sorted by null

1 2 3

  /external/selinux/policycoreutils/sandbox/
start 2 import gtk
  /external/selinux/policycoreutils/gui/
semanagePage.py 20 import gtk namespace
21 import gtk.glade namespace
45 while gtk.events_pending():
46 gtk.main_iteration()
54 self.busy_cursor = gtk.gdk.Cursor(gtk.gdk.WATCH)
55 self.ready_cursor = gtk.gdk.Cursor(gtk.gdk.LEFT_PTR)
108 dlg = gtk.MessageDialog(None, 0, gtk.MESSAGE_INFO
    [all...]
modulesPage.py 20 import gtk namespace
21 import gtk.glade namespace
57 self.store = gtk.ListStore(gobject.TYPE_STRING, gobject.TYPE_STRING)
59 self.store.set_sort_column_id(0, gtk.SORT_ASCENDING)
60 col = gtk.TreeViewColumn(_("Module Name"), gtk.CellRendererText(), text=0)
64 self.store.set_sort_column_id(0, gtk.SORT_ASCENDING)
65 col = gtk.TreeViewColumn(_("Version"), gtk.CellRendererText(), text=1)
164 dialog = gtk.FileChooserDialog(_("Load Policy Module")
    [all...]
booleansPage.py 22 import gtk namespace
23 import gtk.glade namespace
95 self.busy_cursor = gtk.gdk.Cursor(gtk.gdk.WATCH)
96 self.ready_cursor = gtk.gdk.Cursor(gtk.gdk.LEFT_PTR)
112 listStore = gtk.ListStore(gobject.TYPE_STRING)
113 cell = gtk.CellRendererText()
115 self.store = gtk.ListStore(gobject.TYPE_BOOLEAN, gobject.TYPE_STRING, gobject.TYPE_STRING, gobject.TYPE_STRING)
116 self.store.set_sort_column_id(1, gtk.SORT_ASCENDING
    [all...]
mappingsPage.py 20 import gtk namespace
21 import gtk.glade namespace
49 self.store = gtk.ListStore(gobject.TYPE_STRING, gobject.TYPE_STRING, gobject.TYPE_STRING)
50 self.store.set_sort_column_id(0, gtk.SORT_ASCENDING)
system-config-selinux.py 27 import gtk namespace
33 import gtk.glade namespace
74 xml = gtk.glade.XML("system-config-selinux.glade", domain=PROGNAME)
76 xml = gtk.glade.XML("/usr/share/system-config-selinux/system-config-selinux.glade", domain=PROGNAME)
112 dlg = gtk.MessageDialog(None, 0, gtk.MESSAGE_ERROR,
113 gtk.BUTTONS_CLOSE,
115 dlg.set_position(gtk.WIN_POS_MOUSE)
147 gtk.main_quit()
169 self.store = gtk.ListStore(gobject.TYPE_STRING
    [all...]
polgengui.py 25 import gtk namespace
26 import gtk.glade namespace
91 xml = gtk.glade.XML("polgen.glade", domain=PROGNAME)
93 xml = gtk.glade.XML("/usr/share/system-config-selinux/polgen.glade", domain=PROGNAME)
272 self.boolean_store = gtk.ListStore(gobject.TYPE_STRING, gobject.TYPE_STRING)
274 self.boolean_store.set_sort_column_id(0, gtk.SORT_ASCENDING)
275 col = gtk.TreeViewColumn(_("Name"), gtk.CellRendererText(), text=0)
277 col = gtk.TreeViewColumn(_("Description"), gtk.CellRendererText(), text=1
    [all...]
loginsPage.py 20 import gtk namespace
21 import gtk.glade namespace
51 self.store = gtk.ListStore(gobject.TYPE_STRING, gobject.TYPE_STRING, gobject.TYPE_STRING)
53 self.store.set_sort_column_id(0, gtk.SORT_ASCENDING)
54 col = gtk.TreeViewColumn(_("Login\nName"), gtk.CellRendererText(), text=0)
58 col = gtk.TreeViewColumn(_("SELinux\nUser"), gtk.CellRendererText(), text=1)
61 col = gtk.TreeViewColumn(_("MLS/\nMCS Range"), gtk.CellRendererText(), text=2
    [all...]
usersPage.py 20 import gtk namespace
21 import gtk.glade namespace
48 self.store = gtk.ListStore(gobject.TYPE_STRING, gobject.TYPE_STRING, gobject.TYPE_STRING, gobject.TYPE_STRING, gobject.TYPE_STRING)
50 self.store.set_sort_column_id(0, gtk.SORT_ASCENDING)
52 col = gtk.TreeViewColumn(_("SELinux\nUser"), gtk.CellRendererText(), text=0)
57 col = gtk.TreeViewColumn(_("MLS/\nMCS Range"), gtk.CellRendererText(), text=1)
61 col = gtk.TreeViewColumn(_("SELinux Roles"), gtk.CellRendererText(), text=2
    [all...]
fcontextPage.py 19 import gtk namespace
20 import gtk.glade namespace
72 self.store = gtk.ListStore(gobject.TYPE_STRING, gobject.TYPE_STRING, gobject.TYPE_STRING)
77 col = gtk.TreeViewColumn(_("File\nSpecification"), gtk.CellRendererText(), text=SPEC_COL)
78 col.set_sizing(gtk.TREE_VIEW_COLUMN_FIXED)
84 col = gtk.TreeViewColumn(_("Selinux\nFile Type"), gtk.CellRendererText(), text=TYPE_COL)
86 col.set_sizing(gtk.TREE_VIEW_COLUMN_FIXED)
91 col = gtk.TreeViewColumn(_("File\nType"), gtk.CellRendererText(), text=2
    [all...]
domainsPage.py 20 import gtk namespace
21 import gtk.glade namespace
56 self.store = gtk.ListStore(gobject.TYPE_STRING, gobject.TYPE_STRING)
58 self.store.set_sort_column_id(0, gtk.SORT_ASCENDING)
59 col = gtk.TreeViewColumn(_("Domain Name"), gtk.CellRendererText(), text=0)
63 self.store.set_sort_column_id(0, gtk.SORT_ASCENDING)
64 col = gtk.TreeViewColumn(_("Mode"), gtk.CellRendererText(), text=1)
statusPage.py 20 import gtk namespace
21 import gtk.glade namespace
122 dlg = gtk.MessageDialog(None, 0, gtk.MESSAGE_INFO,
123 gtk.BUTTONS_YES_NO,
125 dlg.set_position(gtk.WIN_POS_MOUSE)
135 if self.verify(_("Changing the policy type will cause a relabel of the entire file system on the next boot. Relabeling takes a long time depending on the size of the file system. Do you wish to continue?")) == gtk.RESPONSE_NO:
149 if self.verify(_("Changing to SELinux disabled requires a reboot. It is not recommended. If you later decide to turn SELinux back on, the system will be required to relabel. If you just want to see if SELinux is causing a problem on your system, you can go to permissive mode which will only log errors and not enforce SELinux policy. Permissive mode does not require a reboot Do you wish to continue?")) == gtk.RESPONSE_NO:
154 if self.verify(_("Changing to SELinux enabled will cause a relabel of the entire file system on the next boot. Relabeling takes a long time depending on the size of the file system. Do you wish to continue?")) == gtk.RESPONSE_NO:
portsPage.py 20 import gtk namespace
21 import gtk.glade namespace
82 self.store = gtk.ListStore(gobject.TYPE_STRING, gobject.TYPE_STRING, gobject.TYPE_STRING, gobject.TYPE_STRING)
84 self.store.set_sort_column_id(0, gtk.SORT_ASCENDING)
87 col = gtk.TreeViewColumn(_("SELinux Port\nType"), gtk.CellRendererText(), text=TYPE_COL)
91 self.store.set_sort_column_id(TYPE_COL, gtk.SORT_ASCENDING)
93 col = gtk.TreeViewColumn(_("Protocol"), gtk.CellRendererText(), text=PROTOCOL_COL)
98 self.mls_col = gtk.TreeViewColumn(_("MLS/MCS\nLevel"), gtk.CellRendererText(), text=MLS_COL
    [all...]
  /external/autotest/client/virt/
virt_step_editor.py 10 import pygtk, gtk, os, glob, shutil, sys, logging namespace
43 keymap = gtk.gdk.keymap_get_default()
46 keyname = gtk.gdk.keyval_name(keyval)
99 if event.state & gtk.gdk.CONTROL_MASK:
101 if event.state & gtk.gdk.MOD1_MASK:
103 if event.state & gtk.gdk.SHIFT_MASK:
115 self.window = gtk.Window(gtk.WINDOW_TOPLEVEL)
122 self.menu_vbox = gtk.VBox()
126 frame = gtk.Frame(
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/properties/
feedPublish.eclipse.properties 67 0,linux,gtk,x86,UNKNOWN,\
68 0,linux,gtk,x86_64,UNKNOWN,\
69 0,linux,gtk,ppc,UNKNOWN,\
70 0,solaris8,gtk,x86,UNKNOWN,\
75 RHEL4-3GHz-2.5GB,linux,gtk,x86,UNKNOWN,\
77 RHEL3-3GHz-2GB,linux,gtk,x86,UNKNOWN,\
83 # eg., win32,win,SDK,eclipse-SDK-%%buildAlias%%-win32.zip,linux,gtk,SDK,eclipse-SDK-%%buildAlias%%-linux-gtk.tar.gz
86 linux,gtk,x86,SDK,eclipse-SDK-%%buildAlias%%-linux-gtk.tar.g
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/templates/packager/
packaging.properties 21 root.linux.gtk.x86=eclipse,libcairo-swt.so,about_files/,about.html,icon.xpm
22 root.linux.gtk.x86_64=eclipse,libcairo-swt.so,about_files/,about.html,icon.xpm
23 root.linux.gtk.ppc=eclipse
28 root.solaris.gtk.sparc=eclipse,Eclipse.l.pm,Eclipse.m.pm,Eclipse.s.pm,Eclipse.t.pm
  /external/fio/
gcompat.c 1 #include <gtk/gtk.h>
gcompat.h 4 #include <gtk/gtk.h>
gerror.c 6 #include <gtk/gtk.h>
  /external/harfbuzz_ng/
autogen.sh 31 echo "*** No gtkdocize (gtk-doc) found, skipping documentation ***"
32 echo "EXTRA_DIST = " > gtk-doc.make
  /external/autotest/client/site_tests/firmware_TouchMTB/
firmware_window.py 5 """This module provides GUI for touch device firmware test using GTK."""
12 import gtk namespace
13 import gtk.gdk namespace
31 self.frame = gtk.AspectFrame() if aspect else gtk.Frame()
32 self.frame.set_shadow_type(gtk.SHADOW_ETCHED_OUT)
61 self.vbox = gtk.VBox(False, 0)
65 self.label_gesture = gtk.Label('Gesture Name')
66 self.label_gesture.set_justify(gtk.JUSTIFY_LEFT)
77 self.vbox.pack_start(gtk.HSeparator(), True, True, 0
    [all...]
  /external/autotest/client/tests/kvm/tests/
stepmaker.py 10 import pygtk, gtk, gobject, time, os, commands, logging namespace
63 hbox = gtk.HBox(spacing=10)
67 self.button_break = gtk.Button("Break")
72 self.button_done = gtk.Button("Done")
255 gtk.gdk.pointer_grab(self.event_box.window, False,
256 gtk.gdk.BUTTON_PRESS_MASK |
257 gtk.gdk.BUTTON_RELEASE_MASK)
259 pix = gtk.gdk.Pixmap(self.event_box.window, 1, 1, 1)
260 color = gtk.gdk.Color()
261 cursor = gtk.gdk.Cursor(pix, pix, color, color, 0, 0
    [all...]
  /external/fonttools/Lib/fontTools/
inspect.py 13 import gtk namespace
162 class FontTreeModel(gtk.GenericTreeModel):
224 gtk.main_quit()
229 self.window = gtk.Window(gtk.WINDOW_TOPLEVEL)
234 self.scrolled_window = gtk.ScrolledWindow()
239 self.treeview = gtk.TreeView(self.treemodel)
244 col = gtk.TreeViewColumn(col_name)
248 cell = gtk.CellRendererText()
262 gtk.main(
    [all...]
  /external/webrtc/webrtc/examples/peerconnection/client/linux/
main.cc 11 #include <gtk/gtk.h>
30 // Override so that we can also pump the GTK message loop.
32 // Pump GTK events.
99 // TODO(henrike): Run the Gtk main loop to tear down the connection.
  /external/avahi/avahi-python/avahi-discover/
avahi-discover.py 23 import avahi, gettext, gtk, gobject, dbus, avahi.ServiceTypeDatabase namespace
48 d = gtk.MessageDialog(parent=None, flags=gtk.DIALOG_MODAL,
49 type=gtk.MESSAGE_ERROR, buttons=gtk.BUTTONS_OK)
62 gtk.window_set_default_icon_name("network-wired")
63 self.ui = gtk.Builder()
243 self.treemodel=gtk.TreeStore(gobject.TYPE_STRING, gobject.TYPE_STRING, gobject.TYPE_STRING, gobject.TYPE_STRING, gobject.TYPE_STRING, gobject.TYPE_STRING)
248 renderer=gtk.CellRendererText()
249 column=gtk.TreeViewColumn("",renderer, text=0
    [all...]

Completed in 370 milliseconds

1 2 3