Initial commit with a non-working version
This commit is contained in:
13
data/Makefile.am
Normal file
13
data/Makefile.am
Normal file
@@ -0,0 +1,13 @@
|
||||
|
||||
-include $(top_srcdir)/git.mk
|
||||
|
||||
resource_files = $(shell $(GLIB_COMPILE_RESOURCES) --sourcedir=$(srcdir) --sourcedir=$(builddir) --generate-dependencies $(srcdir)/gauthenticator.gresource.xml)
|
||||
gauthenticator.gresource: gauthenticator.gresource.xml $(resource_files)
|
||||
$(AM_V_GEN) $(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=$(srcdir) --sourcedir=$(builddir) $<
|
||||
|
||||
resourcedir = $(pkgdatadir)
|
||||
resource_DATA = gauthenticator.gresource
|
||||
|
||||
EXTRA_DIST = gauthenticator.gresource.xml $(resource_files)
|
||||
|
||||
CLEANFILES = gauthenticator.gresource
|
35
data/gauth-window.ui
Normal file
35
data/gauth-window.ui
Normal file
@@ -0,0 +1,35 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- Generated with glade 3.20.0 -->
|
||||
<interface>
|
||||
<requires lib="gtk+" version="3.12"/>
|
||||
<template class="GAuthenticatorWindow" parent="GtkApplicationWindow">
|
||||
<property name="can_focus">False</property>
|
||||
<child>
|
||||
<object class="GtkGrid">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<child>
|
||||
<object class="GtkProgressBar" id="countdown">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="hexpand">True</property>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="left_attach">0</property>
|
||||
<property name="top_attach">0</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkListBox" id="auth_list">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="left_attach">0</property>
|
||||
<property name="top_attach">1</property>
|
||||
</packing>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
</template>
|
||||
</interface>
|
6
data/gauthenticator.gresource.xml
Normal file
6
data/gauthenticator.gresource.xml
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<gresources>
|
||||
<gresource prefix="/eu/polonkai/gergely/gauthenticator">
|
||||
<file preprocess="xml-stripblanks">gauth-window.ui</file>
|
||||
</gresource>
|
||||
</gresources>
|
Reference in New Issue
Block a user