Cole Robinson
d7fed32947
Bump gtk dep to 3.22 for new popup routines
...
Given that we bumped deps to fairly modern distros with the
python3 change, I think this is safe. gtk 3.22 is from sep 2016, it's
in debian9 and fedora 25+, which seems fine for our needs.
2019-04-07 13:54:00 -04:00
Cole Robinson
b29f214834
tests: dist: Catch atk names marked translatable
...
We aren't using them in a translatable way
2018-10-07 18:53:39 -04:00
Cole Robinson
fc8f8d5d7e
connect: Drop avahi support
...
Libvirtd can advertise itself over avahi. The feature is disabled by
default though and in practice I hear of no one actually using it
and frankly I don't think it's all that useful
The 'Open Connection' wizard has a disproportionate amount of code
devoted to this feature, but I don't think it's useful or worth
maintaining, so let's drop it
2018-10-06 20:55:31 -04:00
Cole Robinson
04398945e1
connect: Drop non-ssh remote transport UI
...
These URIs take non-trivial external config to make work. Explicitly
putting them in the UI is a distraction now that we have the custom
URI option
2018-05-02 17:42:32 -04:00
Cole Robinson
8716fd92af
ui: connect: Add 'Custom URI' option
...
Proper UI option to just enter your own URI
2018-01-09 17:58:55 -05:00
Radostin Stoyanov
fc5ecbcdf8
Resolve incorrect label alignment
...
The "xalign" property determines the horizontal alignment of the label
text inside the labels size allocation. Compare this to “halign”,
which determines how the labels size allocation is positioned
in the space available for the label. [1]
When the "width_chars" property is used, labels appear to be centered.
This could be resolved when the property "width_chars" is replaced
with "max_width_chars" or removed in case "max_width_chars" is already
set. [2]
[1] https://developer.gnome.org/gtk3/stable/GtkLabel.html#GtkLabel--xalign
[2] https://developer.gnome.org/gtk3/stable/GtkWidget.html#GtkAlign
2017-06-01 13:46:20 -04:00
Radostin Stoyanov
7b44967bf7
Use GtkSeparator instead of GtkHSeparator
...
GtkHSeparator was deprecated since Gtk version 3.2 and should not be
used in newly-written code.[1] Use GtkSeparator instead.[2]
By default, GtkSeparator's orientation is set to horizontal.[3]
[1] https://developer.gnome.org/gtk3/stable/GtkHSeparator.html
[2] https://developer.gnome.org/gtk3/stable/GtkSeparator.html
[3] https://developer.gnome.org/gtk3/stable/gtk3-Orientable.html#GtkOrientable--orientation
2017-05-31 13:27:43 -04:00
Radostin Stoyanov
84419fe90c
Remove deprecated GtkMisc:ypad property
...
GtkMisc:ypad was deprecated since Gtk version 3.14 and should not be
used in newly-written code. Use margin-top and margin-bottom instead.
Both have default value set to 0.
https://developer.gnome.org/gtk3/stable/GtkMisc.html#GtkMisc--ypad
https://developer.gnome.org/gtk3/stable/GtkWidget.html#GtkWidget--margin-top
https://developer.gnome.org/gtk3/stable/GtkWidget.html#GtkWidget--margin-bottom
2017-05-31 13:27:43 -04:00
Radostin Stoyanov
dd59bd6267
Use valign property instead of yalign
...
GtkAlignment:yalign was deprecated since Gtk version 3.14 and
should not be used in newly-written code. Use valign property instead.
The behaviour of yalign='0' is identical to valign='start', similar
for yalign='1' and valign='end'. The default value of the property
valign is GTK_ALIGN_FILL which has simmilar behaviour to yalign='0.5'.
https://developer.gnome.org/gtk3/stable/GtkAlignment.html#GtkAlignment--yalign
https://developer.gnome.org/gtk3/stable/GtkWidget.html#GtkWidget--valign
2017-05-31 13:27:43 -04:00
Radostin Stoyanov
6f7fb58953
Remove redundant xalign property
...
GtkAlignment:xalign was deprecated since Gtk version 3.14 and should
not be used in newly-written code. Specifying halign property is not
required when xalign='0.5' because the behaviour is identical to the
default value of halign.
https://developer.gnome.org/gtk3/stable/GtkAlignment.html#GtkAlignment--xalign
https://developer.gnome.org/gtk3/stable/GtkWidget.html#GtkWidget--halign
2017-05-31 13:27:43 -04:00
Radostin Stoyanov
b6731ceaa6
Replace xalign='0' with halign='start'
...
GtkAlignment:xalign was deprecated since Gtk version 3.14 and should
not be used in newly-written code. Use halign property instead.
https://developer.gnome.org/gtk3/stable/GtkAlignment.html#GtkAlignment--xalign
https://developer.gnome.org/gtk3/stable/GtkWidget.html#GtkWidget--halign
2017-05-31 13:27:43 -04:00
Radostin Stoyanov
5a658ef6bd
Format UI files with Glade 3.20
...
Glade performs XML formatting on save. The changes in this commit are
generated by Glade 3.20
2017-05-31 13:27:43 -04:00
Cole Robinson
dfcac3fe9c
Bump gtk and pygobject deps to 3.14
...
We need to bump the gtk dep to at least 3.10 for GtkRevealer usage,
and I want to bump the pygobject higher to drop some bug workarounds.
But since the oldest thing I have that meets those requirements is
RHEL/Centos 7.3 which is at 3.14 for both, set those as the minimum
versions since that's what I'll be testing against. They are still
1.5 years old and only a bit over a year newer than the previous
versions, so it's not a huge change.
2016-05-17 17:49:55 -04:00
Cole Robinson
117cad551d
ui: Don't mark UI accessibility names as translatable
...
Because I haven't been using translatable strings...
2015-09-23 17:01:41 -04:00
Cole Robinson
fa76e92f2c
virt-manager: Fix issues with ellipsizing on recent gtk
2014-09-19 22:08:22 -04:00
Cole Robinson
55739055fd
ui: Set all files to minimum requirement of gtk 3.8
...
That way gives us better feedback from glade
2014-09-19 21:19:26 -04:00
Cole Robinson
cc70aa82ab
ui: Fix minor issues, and resave all files with f21 glade
2014-09-06 15:01:12 -04:00
Chen Hanxiao
d007352aa4
connection: Fix Alt - t shortcut key
...
Or we will get:
"Couldn't find a target for a mnemonic activation"
Signed-off-by: Chen Hanxiao <chenhanxiao@cn.fujitsu.com>
2014-06-12 16:36:16 +08:00
Giuseppe Scrivano
86d5ff04e3
connection: Fix Alt-o shortcut key
...
Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
2014-06-12 10:03:32 +02:00
Cole Robinson
5bff23758c
connect: Add an option for qemu:///session (bz 557103)
...
But warn that it may not function like users expect.
2014-02-01 19:44:27 -05:00
Cole Robinson
6da801f944
Set list selection signals in glade, not code
2013-09-22 16:29:58 -04:00
Cole Robinson
d338bce329
Rename ui files to match source file names
2013-09-22 16:10:16 -04:00