temp commit
This commit is contained in:
@@ -0,0 +1,11 @@
|
|||||||
|
window {
|
||||||
|
border-bottom-left-radius: 7;
|
||||||
|
border-bottom-right-radius: 7;
|
||||||
|
}
|
||||||
|
|
||||||
|
.homepage button {
|
||||||
|
transition: border 100ms ease-in-out;
|
||||||
|
padding: 10px 30px;
|
||||||
|
border: none;
|
||||||
|
border-radius: 5px 5px 5px 5px;
|
||||||
|
}
|
||||||
+15
-3
@@ -98,6 +98,10 @@ class Hello(Gtk.Window):
|
|||||||
Gtk.Window.__init__(self, title="Manjaro Hello", border_width=6)
|
Gtk.Window.__init__(self, title="Manjaro Hello", border_width=6)
|
||||||
self.app = "manjaro-hello"
|
self.app = "manjaro-hello"
|
||||||
self.dev = "--dev" in sys.argv # Dev mode activated ?
|
self.dev = "--dev" in sys.argv # Dev mode activated ?
|
||||||
|
screen = Gdk.Screen.get_default()
|
||||||
|
provider = Gtk.CssProvider()
|
||||||
|
provider.load_from_path(os.path.abspath("src/style.css"))
|
||||||
|
Gtk.StyleContext.add_provider_for_screen(screen, provider, Gtk.STYLE_PROVIDER_PRIORITY_APPLICATION)
|
||||||
|
|
||||||
# Load preferences
|
# Load preferences
|
||||||
if self.dev:
|
if self.dev:
|
||||||
@@ -117,7 +121,11 @@ class Hello(Gtk.Window):
|
|||||||
self.builder = Gtk.Builder.new_from_file(self.preferences["ui_path"])
|
self.builder = Gtk.Builder.new_from_file(self.preferences["ui_path"])
|
||||||
self.builder.connect_signals(self)
|
self.builder.connect_signals(self)
|
||||||
self.window = self.builder.get_object("window")
|
self.window = self.builder.get_object("window")
|
||||||
|
self.window.set_decorated(True)
|
||||||
|
hb = Gtk.HeaderBar()
|
||||||
|
hb.set_show_close_button(True)
|
||||||
|
hb.props.title = "Convert2Html"
|
||||||
|
self.set_titlebar(hb)
|
||||||
# Subtitle of headerbar
|
# Subtitle of headerbar
|
||||||
self.builder.get_object("headerbar").props.subtitle = ' '.join(get_lsb_infos())
|
self.builder.get_object("headerbar").props.subtitle = ' '.join(get_lsb_infos())
|
||||||
|
|
||||||
@@ -172,6 +180,12 @@ class Hello(Gtk.Window):
|
|||||||
manager.get_modules(self)
|
manager.get_modules(self)
|
||||||
manager.display(self)
|
manager.display(self)
|
||||||
|
|
||||||
|
button = Gtk.Button()
|
||||||
|
button.set_relief(Gtk.ReliefStyle.NONE)
|
||||||
|
img = Gtk.Image.new_from_icon_name("window-close-symbolic", Gtk.IconSize.MENU)
|
||||||
|
button.set_image(img)
|
||||||
|
button.connect("clicked", Gtk.main_quit)
|
||||||
|
self.window.add(button)
|
||||||
self.window.show()
|
self.window.show()
|
||||||
|
|
||||||
def get_best_locale(self):
|
def get_best_locale(self):
|
||||||
@@ -323,13 +337,11 @@ class Hello(Gtk.Window):
|
|||||||
dialog.hide()
|
dialog.hide()
|
||||||
elif name == "appBrowser":
|
elif name == "appBrowser":
|
||||||
# or use only "on_btn_clicked" ?
|
# or use only "on_btn_clicked" ?
|
||||||
self.builder.get_object("home").set_sensitive(not name == "home")
|
|
||||||
self.builder.get_object("stack").set_visible_child_name(name + "page")
|
self.builder.get_object("stack").set_visible_child_name(name + "page")
|
||||||
|
|
||||||
def on_btn_clicked(self, btn):
|
def on_btn_clicked(self, btn):
|
||||||
"""Event for applications button."""
|
"""Event for applications button."""
|
||||||
name = btn.get_name()
|
name = btn.get_name()
|
||||||
self.builder.get_object("home").set_sensitive(not name == "home")
|
|
||||||
self.builder.get_object("stack").set_visible_child_name(name + "page")
|
self.builder.get_object("stack").set_visible_child_name(name + "page")
|
||||||
|
|
||||||
def on_link_clicked(self, link, _=None):
|
def on_link_clicked(self, link, _=None):
|
||||||
|
|||||||
@@ -0,0 +1 @@
|
|||||||
|
@import url("base.css");
|
||||||
+185
-177
@@ -1,16 +1,11 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<!-- Generated with glade 3.38.1 -->
|
<!-- Generated with glade 3.38.2 -->
|
||||||
<interface>
|
<interface>
|
||||||
<requires lib="gtk+" version="3.20"/>
|
<requires lib="gtk+" version="3.20"/>
|
||||||
<object class="GtkImage" id="homeicon">
|
<object class="GtkImage" id="abouticon">
|
||||||
<property name="visible">True</property>
|
<property name="visible">True</property>
|
||||||
<property name="can-focus">False</property>
|
<property name="can-focus">False</property>
|
||||||
<property name="icon-name">go-home-symbolic</property>
|
<property name="icon-name">emblem-favorite</property>
|
||||||
</object>
|
|
||||||
<object class="GtkImage" id="iconabout">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<property name="icon-name">help-about-symbolic</property>
|
|
||||||
</object>
|
</object>
|
||||||
<object class="GtkWindow" id="window">
|
<object class="GtkWindow" id="window">
|
||||||
<property name="can-focus">False</property>
|
<property name="can-focus">False</property>
|
||||||
@@ -26,7 +21,7 @@
|
|||||||
<property name="hexpand">True</property>
|
<property name="hexpand">True</property>
|
||||||
<property name="transition-type">crossfade</property>
|
<property name="transition-type">crossfade</property>
|
||||||
<child>
|
<child>
|
||||||
<!-- n-columns=3 n-rows=10 -->
|
<!-- n-columns=3 n-rows=11 -->
|
||||||
<object class="GtkGrid" id="homepage">
|
<object class="GtkGrid" id="homepage">
|
||||||
<property name="visible">True</property>
|
<property name="visible">True</property>
|
||||||
<property name="can-focus">False</property>
|
<property name="can-focus">False</property>
|
||||||
@@ -44,7 +39,7 @@
|
|||||||
</object>
|
</object>
|
||||||
<packing>
|
<packing>
|
||||||
<property name="left-attach">0</property>
|
<property name="left-attach">0</property>
|
||||||
<property name="top-attach">0</property>
|
<property name="top-attach">1</property>
|
||||||
<property name="width">3</property>
|
<property name="width">3</property>
|
||||||
</packing>
|
</packing>
|
||||||
</child>
|
</child>
|
||||||
@@ -61,7 +56,7 @@
|
|||||||
</object>
|
</object>
|
||||||
<packing>
|
<packing>
|
||||||
<property name="left-attach">0</property>
|
<property name="left-attach">0</property>
|
||||||
<property name="top-attach">1</property>
|
<property name="top-attach">2</property>
|
||||||
<property name="width">3</property>
|
<property name="width">3</property>
|
||||||
</packing>
|
</packing>
|
||||||
</child>
|
</child>
|
||||||
@@ -79,7 +74,7 @@ We, the Manjaro Developers, hope that you will enjoy using Manjaro as much as we
|
|||||||
</object>
|
</object>
|
||||||
<packing>
|
<packing>
|
||||||
<property name="left-attach">0</property>
|
<property name="left-attach">0</property>
|
||||||
<property name="top-attach">2</property>
|
<property name="top-attach">3</property>
|
||||||
<property name="width">3</property>
|
<property name="width">3</property>
|
||||||
</packing>
|
</packing>
|
||||||
</child>
|
</child>
|
||||||
@@ -94,7 +89,7 @@ We, the Manjaro Developers, hope that you will enjoy using Manjaro as much as we
|
|||||||
</object>
|
</object>
|
||||||
<packing>
|
<packing>
|
||||||
<property name="left-attach">0</property>
|
<property name="left-attach">0</property>
|
||||||
<property name="top-attach">3</property>
|
<property name="top-attach">4</property>
|
||||||
</packing>
|
</packing>
|
||||||
</child>
|
</child>
|
||||||
<child>
|
<child>
|
||||||
@@ -108,7 +103,7 @@ We, the Manjaro Developers, hope that you will enjoy using Manjaro as much as we
|
|||||||
</object>
|
</object>
|
||||||
<packing>
|
<packing>
|
||||||
<property name="left-attach">1</property>
|
<property name="left-attach">1</property>
|
||||||
<property name="top-attach">3</property>
|
<property name="top-attach">4</property>
|
||||||
</packing>
|
</packing>
|
||||||
</child>
|
</child>
|
||||||
<child>
|
<child>
|
||||||
@@ -122,7 +117,7 @@ We, the Manjaro Developers, hope that you will enjoy using Manjaro as much as we
|
|||||||
</object>
|
</object>
|
||||||
<packing>
|
<packing>
|
||||||
<property name="left-attach">2</property>
|
<property name="left-attach">2</property>
|
||||||
<property name="top-attach">3</property>
|
<property name="top-attach">4</property>
|
||||||
</packing>
|
</packing>
|
||||||
</child>
|
</child>
|
||||||
<child>
|
<child>
|
||||||
@@ -136,7 +131,7 @@ We, the Manjaro Developers, hope that you will enjoy using Manjaro as much as we
|
|||||||
</object>
|
</object>
|
||||||
<packing>
|
<packing>
|
||||||
<property name="left-attach">0</property>
|
<property name="left-attach">0</property>
|
||||||
<property name="top-attach">4</property>
|
<property name="top-attach">5</property>
|
||||||
</packing>
|
</packing>
|
||||||
</child>
|
</child>
|
||||||
<child>
|
<child>
|
||||||
@@ -151,7 +146,7 @@ We, the Manjaro Developers, hope that you will enjoy using Manjaro as much as we
|
|||||||
</object>
|
</object>
|
||||||
<packing>
|
<packing>
|
||||||
<property name="left-attach">0</property>
|
<property name="left-attach">0</property>
|
||||||
<property name="top-attach">5</property>
|
<property name="top-attach">6</property>
|
||||||
</packing>
|
</packing>
|
||||||
</child>
|
</child>
|
||||||
<child>
|
<child>
|
||||||
@@ -168,7 +163,7 @@ We, the Manjaro Developers, hope that you will enjoy using Manjaro as much as we
|
|||||||
</object>
|
</object>
|
||||||
<packing>
|
<packing>
|
||||||
<property name="left-attach">0</property>
|
<property name="left-attach">0</property>
|
||||||
<property name="top-attach">6</property>
|
<property name="top-attach">7</property>
|
||||||
</packing>
|
</packing>
|
||||||
</child>
|
</child>
|
||||||
<child>
|
<child>
|
||||||
@@ -182,7 +177,7 @@ We, the Manjaro Developers, hope that you will enjoy using Manjaro as much as we
|
|||||||
</object>
|
</object>
|
||||||
<packing>
|
<packing>
|
||||||
<property name="left-attach">2</property>
|
<property name="left-attach">2</property>
|
||||||
<property name="top-attach">4</property>
|
<property name="top-attach">5</property>
|
||||||
</packing>
|
</packing>
|
||||||
</child>
|
</child>
|
||||||
<child>
|
<child>
|
||||||
@@ -199,7 +194,7 @@ We, the Manjaro Developers, hope that you will enjoy using Manjaro as much as we
|
|||||||
</object>
|
</object>
|
||||||
<packing>
|
<packing>
|
||||||
<property name="left-attach">1</property>
|
<property name="left-attach">1</property>
|
||||||
<property name="top-attach">4</property>
|
<property name="top-attach">5</property>
|
||||||
</packing>
|
</packing>
|
||||||
</child>
|
</child>
|
||||||
<child>
|
<child>
|
||||||
@@ -216,7 +211,7 @@ We, the Manjaro Developers, hope that you will enjoy using Manjaro as much as we
|
|||||||
</object>
|
</object>
|
||||||
<packing>
|
<packing>
|
||||||
<property name="left-attach">1</property>
|
<property name="left-attach">1</property>
|
||||||
<property name="top-attach">5</property>
|
<property name="top-attach">6</property>
|
||||||
</packing>
|
</packing>
|
||||||
</child>
|
</child>
|
||||||
<child>
|
<child>
|
||||||
@@ -233,7 +228,7 @@ We, the Manjaro Developers, hope that you will enjoy using Manjaro as much as we
|
|||||||
</object>
|
</object>
|
||||||
<packing>
|
<packing>
|
||||||
<property name="left-attach">1</property>
|
<property name="left-attach">1</property>
|
||||||
<property name="top-attach">6</property>
|
<property name="top-attach">7</property>
|
||||||
</packing>
|
</packing>
|
||||||
</child>
|
</child>
|
||||||
<child>
|
<child>
|
||||||
@@ -250,7 +245,7 @@ We, the Manjaro Developers, hope that you will enjoy using Manjaro as much as we
|
|||||||
</object>
|
</object>
|
||||||
<packing>
|
<packing>
|
||||||
<property name="left-attach">2</property>
|
<property name="left-attach">2</property>
|
||||||
<property name="top-attach">5</property>
|
<property name="top-attach">6</property>
|
||||||
</packing>
|
</packing>
|
||||||
</child>
|
</child>
|
||||||
<child>
|
<child>
|
||||||
@@ -267,7 +262,7 @@ We, the Manjaro Developers, hope that you will enjoy using Manjaro as much as we
|
|||||||
</object>
|
</object>
|
||||||
<packing>
|
<packing>
|
||||||
<property name="left-attach">2</property>
|
<property name="left-attach">2</property>
|
||||||
<property name="top-attach">6</property>
|
<property name="top-attach">7</property>
|
||||||
</packing>
|
</packing>
|
||||||
</child>
|
</child>
|
||||||
<child>
|
<child>
|
||||||
@@ -278,90 +273,57 @@ We, the Manjaro Developers, hope that you will enjoy using Manjaro as much as we
|
|||||||
<property name="vexpand">True</property>
|
<property name="vexpand">True</property>
|
||||||
<property name="spacing">10</property>
|
<property name="spacing">10</property>
|
||||||
<child>
|
<child>
|
||||||
<object class="GtkBox" id="social">
|
<object class="GtkComboBoxText" id="languages">
|
||||||
<property name="visible">True</property>
|
<property name="visible">True</property>
|
||||||
<property name="can-focus">False</property>
|
<property name="can-focus">False</property>
|
||||||
<property name="spacing">5</property>
|
<items>
|
||||||
<child>
|
<item id="sq">Albanian</item>
|
||||||
<object class="GtkEventBox">
|
<item id="ar">Arabic</item>
|
||||||
<property name="name">telegram</property>
|
<item id="ast-ES">Asturian (Spain)</item>
|
||||||
<property name="visible">True</property>
|
<item id="be">Belarusian</item>
|
||||||
<property name="can-focus">False</property>
|
<item id="bg">Bulgarian</item>
|
||||||
<signal name="button-press-event" handler="on_link_clicked" swapped="no"/>
|
<item id="ca">Catalan</item>
|
||||||
<child>
|
<item id="zh-CN">Chinese (China)</item>
|
||||||
<object class="GtkImage" id="telegram">
|
<item id="zh-TW">Chinese (Taiwan)</item>
|
||||||
<property name="visible">True</property>
|
<item id="hr">Croatian</item>
|
||||||
<property name="can-focus">False</property>
|
<item id="cs">Czech</item>
|
||||||
<property name="tooltip-text">Telegram</property>
|
<item id="da">Danish</item>
|
||||||
</object>
|
<item id="nl">Dutch</item>
|
||||||
</child>
|
<item id="en">English</item>
|
||||||
</object>
|
<item id="fi">Finnish</item>
|
||||||
<packing>
|
<item id="fr">French</item>
|
||||||
<property name="expand">False</property>
|
<item id="de">German</item>
|
||||||
<property name="fill">True</property>
|
<item id="ka">Georgian</item>
|
||||||
<property name="position">0</property>
|
<item id="el-GR">Greek (Greece)</item>
|
||||||
</packing>
|
<item id="he">Hebrew</item>
|
||||||
</child>
|
<item id="hi-IN">Hindi (India)</item>
|
||||||
<child>
|
<item id="hu">Hungarian</item>
|
||||||
<object class="GtkEventBox">
|
<item id="is">Icelandic</item>
|
||||||
<property name="name">facebook</property>
|
<item id="id-ID">Indonesian (Indonesia)</item>
|
||||||
<property name="visible">True</property>
|
<item id="it">Italian</item>
|
||||||
<property name="can-focus">False</property>
|
<item id="ja">Japanese</item>
|
||||||
<signal name="button-press-event" handler="on_link_clicked" swapped="no"/>
|
<item id="ko-KR">Korean (Korea)</item>
|
||||||
<child>
|
<item id="lt">Lithuanian</item>
|
||||||
<object class="GtkImage" id="facebook">
|
<item id="nb">Norwegian Bokmål</item>
|
||||||
<property name="visible">True</property>
|
<item id="fa-IR">Persian (Iran)</item>
|
||||||
<property name="can-focus">False</property>
|
<item id="pl">Polish</item>
|
||||||
<property name="tooltip-text">Facebook</property>
|
<item id="pt-BR">Portuguese (Brazil)</item>
|
||||||
</object>
|
<item id="pt-PT">Portuguese (Portugal)</item>
|
||||||
</child>
|
<item id="ro-RO">Romanian (Romania)</item>
|
||||||
</object>
|
<item id="ru">Russian</item>
|
||||||
<packing>
|
<item id="sk">Slovak</item>
|
||||||
<property name="expand">False</property>
|
<item id="sl-SI">Slovenian (Slovenia)</item>
|
||||||
<property name="fill">True</property>
|
<item id="sl">Slovenian</item>
|
||||||
<property name="position">1</property>
|
<item id="es">Spanish</item>
|
||||||
</packing>
|
<item id="sr-RS">Serbian (Serbia)</item>
|
||||||
</child>
|
<item id="sr">Serbian</item>
|
||||||
<child>
|
<item id="sv">Swedish</item>
|
||||||
<object class="GtkEventBox">
|
<item id="th">Thai</item>
|
||||||
<property name="name">twitter</property>
|
<item id="tr">Turkish</item>
|
||||||
<property name="visible">True</property>
|
<item id="uk">Ukrainian</item>
|
||||||
<property name="can-focus">False</property>
|
<item id="vi-VN">Vietnamese (Viet Nam)</item>
|
||||||
<signal name="button-press-event" handler="on_link_clicked" swapped="no"/>
|
</items>
|
||||||
<child>
|
<signal name="changed" handler="on_languages_changed" swapped="no"/>
|
||||||
<object class="GtkImage" id="twitter">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<property name="tooltip-text">Twitter</property>
|
|
||||||
</object>
|
|
||||||
</child>
|
|
||||||
</object>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="fill">True</property>
|
|
||||||
<property name="position">2</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<object class="GtkEventBox">
|
|
||||||
<property name="name">reddit</property>
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<signal name="button-press-event" handler="on_link_clicked" swapped="no"/>
|
|
||||||
<child>
|
|
||||||
<object class="GtkImage" id="reddit">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<property name="tooltip-text">Reddit</property>
|
|
||||||
</object>
|
|
||||||
</child>
|
|
||||||
</object>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="fill">True</property>
|
|
||||||
<property name="position">3</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
</object>
|
</object>
|
||||||
<packing>
|
<packing>
|
||||||
<property name="expand">False</property>
|
<property name="expand">False</property>
|
||||||
@@ -374,6 +336,8 @@ We, the Manjaro Developers, hope that you will enjoy using Manjaro as much as we
|
|||||||
<property name="visible">True</property>
|
<property name="visible">True</property>
|
||||||
<property name="can-focus">False</property>
|
<property name="can-focus">False</property>
|
||||||
<property name="halign">end</property>
|
<property name="halign">end</property>
|
||||||
|
<property name="valign">center</property>
|
||||||
|
<property name="vexpand">True</property>
|
||||||
<property name="label" translatable="yes">Launch at start</property>
|
<property name="label" translatable="yes">Launch at start</property>
|
||||||
</object>
|
</object>
|
||||||
<packing>
|
<packing>
|
||||||
@@ -387,18 +351,20 @@ We, the Manjaro Developers, hope that you will enjoy using Manjaro as much as we
|
|||||||
<property name="name">autostart</property>
|
<property name="name">autostart</property>
|
||||||
<property name="visible">True</property>
|
<property name="visible">True</property>
|
||||||
<property name="can-focus">True</property>
|
<property name="can-focus">True</property>
|
||||||
|
<property name="valign">center</property>
|
||||||
|
<property name="vexpand">True</property>
|
||||||
<signal name="notify::active" handler="on_action_clicked" swapped="no"/>
|
<signal name="notify::active" handler="on_action_clicked" swapped="no"/>
|
||||||
</object>
|
</object>
|
||||||
<packing>
|
<packing>
|
||||||
<property name="expand">False</property>
|
<property name="expand">False</property>
|
||||||
<property name="fill">True</property>
|
<property name="fill">False</property>
|
||||||
<property name="position">2</property>
|
<property name="position">2</property>
|
||||||
</packing>
|
</packing>
|
||||||
</child>
|
</child>
|
||||||
</object>
|
</object>
|
||||||
<packing>
|
<packing>
|
||||||
<property name="left-attach">0</property>
|
<property name="left-attach">0</property>
|
||||||
<property name="top-attach">9</property>
|
<property name="top-attach">10</property>
|
||||||
<property name="width">3</property>
|
<property name="width">3</property>
|
||||||
</packing>
|
</packing>
|
||||||
</child>
|
</child>
|
||||||
@@ -412,7 +378,7 @@ We, the Manjaro Developers, hope that you will enjoy using Manjaro as much as we
|
|||||||
</object>
|
</object>
|
||||||
<packing>
|
<packing>
|
||||||
<property name="left-attach">1</property>
|
<property name="left-attach">1</property>
|
||||||
<property name="top-attach">7</property>
|
<property name="top-attach">8</property>
|
||||||
</packing>
|
</packing>
|
||||||
</child>
|
</child>
|
||||||
<child>
|
<child>
|
||||||
@@ -425,7 +391,7 @@ We, the Manjaro Developers, hope that you will enjoy using Manjaro as much as we
|
|||||||
</object>
|
</object>
|
||||||
<packing>
|
<packing>
|
||||||
<property name="left-attach">1</property>
|
<property name="left-attach">1</property>
|
||||||
<property name="top-attach">8</property>
|
<property name="top-attach">9</property>
|
||||||
</packing>
|
</packing>
|
||||||
</child>
|
</child>
|
||||||
<child>
|
<child>
|
||||||
@@ -471,16 +437,121 @@ We, the Manjaro Developers, hope that you will enjoy using Manjaro as much as we
|
|||||||
</object>
|
</object>
|
||||||
<packing>
|
<packing>
|
||||||
<property name="left-attach">0</property>
|
<property name="left-attach">0</property>
|
||||||
<property name="top-attach">8</property>
|
<property name="top-attach">9</property>
|
||||||
<property name="width">3</property>
|
<property name="width">3</property>
|
||||||
</packing>
|
</packing>
|
||||||
</child>
|
</child>
|
||||||
|
<child>
|
||||||
|
<object class="GtkBox" id="social">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<property name="halign">center</property>
|
||||||
|
<property name="valign">end</property>
|
||||||
|
<property name="spacing">15</property>
|
||||||
|
<child>
|
||||||
|
<object class="GtkEventBox">
|
||||||
|
<property name="name">telegram</property>
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<signal name="button-press-event" handler="on_link_clicked" swapped="no"/>
|
||||||
|
<child>
|
||||||
|
<object class="GtkImage" id="telegram">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<property name="tooltip-text">Telegram</property>
|
||||||
|
</object>
|
||||||
|
</child>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="expand">False</property>
|
||||||
|
<property name="fill">True</property>
|
||||||
|
<property name="position">0</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<object class="GtkEventBox">
|
||||||
|
<property name="name">facebook</property>
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<signal name="button-press-event" handler="on_link_clicked" swapped="no"/>
|
||||||
|
<child>
|
||||||
|
<object class="GtkImage" id="facebook">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<property name="tooltip-text">Facebook</property>
|
||||||
|
</object>
|
||||||
|
</child>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="expand">False</property>
|
||||||
|
<property name="fill">True</property>
|
||||||
|
<property name="position">1</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<object class="GtkEventBox">
|
||||||
|
<property name="name">twitter</property>
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<signal name="button-press-event" handler="on_link_clicked" swapped="no"/>
|
||||||
|
<child>
|
||||||
|
<object class="GtkImage" id="twitter">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<property name="tooltip-text">Twitter</property>
|
||||||
|
</object>
|
||||||
|
</child>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="expand">False</property>
|
||||||
|
<property name="fill">True</property>
|
||||||
|
<property name="position">2</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<object class="GtkEventBox">
|
||||||
|
<property name="name">reddit</property>
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<signal name="button-press-event" handler="on_link_clicked" swapped="no"/>
|
||||||
|
<child>
|
||||||
|
<object class="GtkImage" id="reddit">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<property name="tooltip-text">Reddit</property>
|
||||||
|
</object>
|
||||||
|
</child>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="expand">False</property>
|
||||||
|
<property name="fill">True</property>
|
||||||
|
<property name="position">3</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="left-attach">1</property>
|
||||||
|
<property name="top-attach">10</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
<child>
|
<child>
|
||||||
<placeholder/>
|
<placeholder/>
|
||||||
</child>
|
</child>
|
||||||
<child>
|
<child>
|
||||||
<placeholder/>
|
<placeholder/>
|
||||||
</child>
|
</child>
|
||||||
|
<child>
|
||||||
|
<placeholder/>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<placeholder/>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<placeholder/>
|
||||||
|
</child>
|
||||||
|
<style>
|
||||||
|
<class name="homepage"/>
|
||||||
|
</style>
|
||||||
</object>
|
</object>
|
||||||
<packing>
|
<packing>
|
||||||
<property name="name">homepage</property>
|
<property name="name">homepage</property>
|
||||||
@@ -495,16 +566,7 @@ We, the Manjaro Developers, hope that you will enjoy using Manjaro as much as we
|
|||||||
<property name="title">Manjaro Hello</property>
|
<property name="title">Manjaro Hello</property>
|
||||||
<property name="show-close-button">True</property>
|
<property name="show-close-button">True</property>
|
||||||
<child>
|
<child>
|
||||||
<object class="GtkButton" id="home">
|
<placeholder/>
|
||||||
<property name="name">home</property>
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="sensitive">False</property>
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<property name="receives-default">True</property>
|
|
||||||
<property name="tooltip-text" translatable="yes">Home</property>
|
|
||||||
<property name="image">homeicon</property>
|
|
||||||
<signal name="clicked" handler="on_btn_clicked" swapped="no"/>
|
|
||||||
</object>
|
|
||||||
</child>
|
</child>
|
||||||
<child>
|
<child>
|
||||||
<object class="GtkButton" id="about">
|
<object class="GtkButton" id="about">
|
||||||
@@ -513,7 +575,7 @@ We, the Manjaro Developers, hope that you will enjoy using Manjaro as much as we
|
|||||||
<property name="can-focus">False</property>
|
<property name="can-focus">False</property>
|
||||||
<property name="receives-default">True</property>
|
<property name="receives-default">True</property>
|
||||||
<property name="tooltip-text" translatable="yes">About</property>
|
<property name="tooltip-text" translatable="yes">About</property>
|
||||||
<property name="image">iconabout</property>
|
<property name="image">abouticon</property>
|
||||||
<signal name="clicked" handler="on_action_clicked" swapped="no"/>
|
<signal name="clicked" handler="on_action_clicked" swapped="no"/>
|
||||||
</object>
|
</object>
|
||||||
<packing>
|
<packing>
|
||||||
@@ -522,61 +584,7 @@ We, the Manjaro Developers, hope that you will enjoy using Manjaro as much as we
|
|||||||
</packing>
|
</packing>
|
||||||
</child>
|
</child>
|
||||||
<child>
|
<child>
|
||||||
<object class="GtkComboBoxText" id="languages">
|
<placeholder/>
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<items>
|
|
||||||
<item id="sq">Albanian</item>
|
|
||||||
<item id="ar">Arabic</item>
|
|
||||||
<item id="ast-ES">Asturian (Spain)</item>
|
|
||||||
<item id="be">Belarusian</item>
|
|
||||||
<item id="bg">Bulgarian</item>
|
|
||||||
<item id="ca">Catalan</item>
|
|
||||||
<item id="zh-CN">Chinese (China)</item>
|
|
||||||
<item id="zh-TW">Chinese (Taiwan)</item>
|
|
||||||
<item id="hr">Croatian</item>
|
|
||||||
<item id="cs">Czech</item>
|
|
||||||
<item id="da">Danish</item>
|
|
||||||
<item id="nl">Dutch</item>
|
|
||||||
<item id="en">English</item>
|
|
||||||
<item id="fi">Finnish</item>
|
|
||||||
<item id="fr">French</item>
|
|
||||||
<item id="de">German</item>
|
|
||||||
<item id="ka">Georgian</item>
|
|
||||||
<item id="el-GR">Greek (Greece)</item>
|
|
||||||
<item id="he">Hebrew</item>
|
|
||||||
<item id="hi-IN">Hindi (India)</item>
|
|
||||||
<item id="hu">Hungarian</item>
|
|
||||||
<item id="is">Icelandic</item>
|
|
||||||
<item id="id-ID">Indonesian (Indonesia)</item>
|
|
||||||
<item id="it">Italian</item>
|
|
||||||
<item id="ja">Japanese</item>
|
|
||||||
<item id="ko-KR">Korean (Korea)</item>
|
|
||||||
<item id="lt">Lithuanian</item>
|
|
||||||
<item id="nb">Norwegian Bokmål</item>
|
|
||||||
<item id="fa-IR">Persian (Iran)</item>
|
|
||||||
<item id="pl">Polish</item>
|
|
||||||
<item id="pt-BR">Portuguese (Brazil)</item>
|
|
||||||
<item id="pt-PT">Portuguese (Portugal)</item>
|
|
||||||
<item id="ro-RO">Romanian (Romania)</item>
|
|
||||||
<item id="ru">Russian</item>
|
|
||||||
<item id="sk">Slovak</item>
|
|
||||||
<item id="sl-SI">Slovenian (Slovenia)</item>
|
|
||||||
<item id="sl">Slovenian</item>
|
|
||||||
<item id="es">Spanish</item>
|
|
||||||
<item id="sr-RS">Serbian (Serbia)</item>
|
|
||||||
<item id="sr">Serbian</item>
|
|
||||||
<item id="sv">Swedish</item>
|
|
||||||
<item id="th">Thai</item>
|
|
||||||
<item id="tr">Turkish</item>
|
|
||||||
<item id="uk">Ukrainian</item>
|
|
||||||
<item id="vi-VN">Vietnamese (Viet Nam)</item>
|
|
||||||
</items>
|
|
||||||
<signal name="changed" handler="on_languages_changed" swapped="no"/>
|
|
||||||
</object>
|
|
||||||
<packing>
|
|
||||||
<property name="position">2</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
</child>
|
||||||
</object>
|
</object>
|
||||||
</child>
|
</child>
|
||||||
|
|||||||
Reference in New Issue
Block a user