initial commit

This commit is contained in:
2018-10-18 16:31:50 -03:00
commit 482d52e96f
26 changed files with 376 additions and 0 deletions

3
data/meson.build Normal file
View File

@@ -0,0 +1,3 @@
install_data('sernatur.desktop', install_dir: join_paths(get_option('datadir'), 'applications'))
install_data('sernatur.png', install_dir: join_paths(get_option('datadir'), 'icons/hicolor/48x48/apps'))
subdir('ui')

7
data/sernatur.desktop Normal file
View File

@@ -0,0 +1,7 @@
[Desktop Entry]
Type=Application
Name=Glade Template
Icon=glade-template
StartupNotify=true
Exec=@bindir@/glade-template
Name[en_US]=sernatur.desktop

BIN
data/sernatur.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

8
data/ui/meson.build Normal file
View File

@@ -0,0 +1,8 @@
gen = generator(
find_program('glib-compile-resources'),
arguments: [ '--sourcedir=@SOURCE_DIR@/data/ui',
'--generate-source',
'--target=@OUTPUT@',
'@INPUT@'],
output: '@PLAINNAME@.c')
sernatur_gresource_c = gen.process(['sernatur.gresource.xml'])

View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<gresources>
<gresource prefix="/cl/cromer/ubb/sernatur">
<file preprocess="xml-stripblanks">sernatur.window.ui</file>
</gresource>
</gresources>

View File

@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Generated with glade 3.22.1 -->
<interface>
<requires lib="gtk+" version="3.10"/>
<template class="SernaturMainWindow" parent="GtkApplicationWindow">
<property name="can_focus">False</property>
<property name="title" translatable="no">SERNATUR</property>
<property name="icon_name">sernatur</property>
<property name="show_menubar">False</property>
<child>
<placeholder/>
</child>
<child>
<placeholder/>
</child>
</template>
</interface>