filechooser bug fixed and gnome icon theme added
3
gtk-nsis-pack/etc/gtk-3.0/settings.ini
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
[Settings]
|
||||||
|
gtk-theme-name = gtk-win32
|
||||||
|
gtk-icon-theme-name = gnome
|
@ -13,7 +13,7 @@
|
|||||||
|
|
||||||
!define GTK_VERSION "3.14.7"
|
!define GTK_VERSION "3.14.7"
|
||||||
!define GTK_BIN_VERSION "3.0.0"
|
!define GTK_BIN_VERSION "3.0.0"
|
||||||
!define PRODUCT_VERSION "${GTK_VERSION}-2015-01-21-ts-win64"
|
!define PRODUCT_VERSION "${GTK_VERSION}-2015-01-27-ts-win64"
|
||||||
!define PRODUCT_NAME "GTK3-Runtime Win64"
|
!define PRODUCT_NAME "GTK3-Runtime Win64"
|
||||||
!define PRODUCT_PUBLISHER "Tom Schoonjans"
|
!define PRODUCT_PUBLISHER "Tom Schoonjans"
|
||||||
!define PRODUCT_WEB_SITE "https://github.com/tschoonj/GTK-for-Windows-Runtime-Environment-Installer"
|
!define PRODUCT_WEB_SITE "https://github.com/tschoonj/GTK-for-Windows-Runtime-Environment-Installer"
|
||||||
@ -319,6 +319,11 @@ SectionIn 1 2 RO
|
|||||||
SetOutPath "$INSTDIR\share\themes\Default"
|
SetOutPath "$INSTDIR\share\themes\Default"
|
||||||
File /r share\themes\Default\gtk-3.0
|
File /r share\themes\Default\gtk-3.0
|
||||||
|
|
||||||
|
SetOutPath "$INSTDIR\share\glib-2.0"
|
||||||
|
File /r share\glib-2.0\schemas
|
||||||
|
|
||||||
|
SetOutPath "$INSTDIR\share"
|
||||||
|
File /r share\icons
|
||||||
|
|
||||||
SetOutPath "$INSTDIR\gtk3-runtime"
|
SetOutPath "$INSTDIR\gtk3-runtime"
|
||||||
; File gtk-postinstall.bat ; this file is generated now
|
; File gtk-postinstall.bat ; this file is generated now
|
||||||
@ -726,6 +731,7 @@ Section Uninstall
|
|||||||
;Delete "$INSTDIR\etc\gtk-2.0\gtk.immodules"
|
;Delete "$INSTDIR\etc\gtk-2.0\gtk.immodules"
|
||||||
;Delete "$INSTDIR\etc\gtk-2.0\gtkrc.default"
|
;Delete "$INSTDIR\etc\gtk-2.0\gtkrc.default"
|
||||||
Delete "$INSTDIR\etc\gtk-3.0\im-multipress.conf"
|
Delete "$INSTDIR\etc\gtk-3.0\im-multipress.conf"
|
||||||
|
Delete "$INSTDIR\etc\gtk-3.0\settings.ini"
|
||||||
RMDir "$INSTDIR\etc\gtk-3.0" ; only if empty
|
RMDir "$INSTDIR\etc\gtk-3.0" ; only if empty
|
||||||
RMDir "$INSTDIR\etc" ; only if empty
|
RMDir "$INSTDIR\etc" ; only if empty
|
||||||
|
|
||||||
@ -798,6 +804,8 @@ Section Uninstall
|
|||||||
|
|
||||||
RMDir /r "$INSTDIR\share\themes\Default"
|
RMDir /r "$INSTDIR\share\themes\Default"
|
||||||
RMDir /r "$INSTDIR\share\themes\Emacs"
|
RMDir /r "$INSTDIR\share\themes\Emacs"
|
||||||
|
RMDir /r "$INSTDIR\share\glib-2.0"
|
||||||
|
RMDir /r "$INSTDIR\share\icons"
|
||||||
|
|
||||||
RMDir "$INSTDIR\share\themes" ; not forced
|
RMDir "$INSTDIR\share\themes" ; not forced
|
||||||
RMDir "$INSTDIR\share" ; not forced
|
RMDir "$INSTDIR\share" ; not forced
|
||||||
|
73
gtk-nsis-pack/share/glib-2.0/schemas/gschema.dtd
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
<!ELEMENT schemalist (schema|enum)* >
|
||||||
|
<!ATTLIST schemalist gettext-domain CDATA #IMPLIED >
|
||||||
|
|
||||||
|
<!ELEMENT schema (key|child|override)* >
|
||||||
|
<!ATTLIST schema id CDATA #REQUIRED
|
||||||
|
path CDATA #IMPLIED
|
||||||
|
gettext-domain CDATA #IMPLIED
|
||||||
|
extends CDATA #IMPLIED
|
||||||
|
list-of CDATA #IMPLIED >
|
||||||
|
|
||||||
|
<!-- enumerated and flags types -->
|
||||||
|
<!-- each value element maps a nick to a numeric value -->
|
||||||
|
<!ELEMENT enum (value*) >
|
||||||
|
<!ATTLIST enum id CDATA #REQUIRED >
|
||||||
|
|
||||||
|
<!ELEMENT flags (value*) >
|
||||||
|
<!ATTLIST flags id CDATA #REQUIRED >
|
||||||
|
|
||||||
|
<!ELEMENT value EMPTY >
|
||||||
|
<!-- nick must be at least 2 characters long -->
|
||||||
|
<!-- value must be parsable as a 32-bit integer -->
|
||||||
|
<!ATTLIST value nick CDATA #REQUIRED
|
||||||
|
value CDATA #REQUIRED >
|
||||||
|
|
||||||
|
<!ELEMENT key (default|summary?|description?|range?|choices?|aliases?)* >
|
||||||
|
<!-- name can only contain lowercase letters, numbers and '-' -->
|
||||||
|
<!-- type must be a GVariant type string -->
|
||||||
|
<!-- enum must be the id of an enum type that has been defined earlier -->
|
||||||
|
<!-- flags must be the id of a flags type that has been defined earlier -->
|
||||||
|
<!-- exactly one of type, enum or flags must be given -->
|
||||||
|
<!ATTLIST key name CDATA #REQUIRED
|
||||||
|
type CDATA #IMPLIED
|
||||||
|
enum CDATA #IMPLIED
|
||||||
|
flags CDATA #IMPLIED >
|
||||||
|
|
||||||
|
<!-- the default value is specified a a serialized GVariant,
|
||||||
|
i.e. you have to include the quotes when specifying a string -->
|
||||||
|
<!ELEMENT default (#PCDATA) >
|
||||||
|
<!-- the presence of the l10n attribute marks a default value for
|
||||||
|
translation, its value is the gettext category to use -->
|
||||||
|
<!-- if context is present, it specifies msgctxt to use -->
|
||||||
|
<!ATTLIST default l10n (messages|time) #IMPLIED
|
||||||
|
context CDATA #IMPLIED >
|
||||||
|
|
||||||
|
<!ELEMENT summary (#PCDATA) >
|
||||||
|
<!ELEMENT description (#PCDATA) >
|
||||||
|
|
||||||
|
<!-- range is only allowed for keys with numeric type -->
|
||||||
|
<!ELEMENT range EMPTY >
|
||||||
|
<!-- min and max must be parseable as values of the key type and min < max -->
|
||||||
|
<!ATTLIST range min CDATA #REQUIRED
|
||||||
|
max CDATA #REQUIRED >
|
||||||
|
|
||||||
|
<!-- choices is only allowed for keys with string or string array type -->
|
||||||
|
<!ELEMENT choices (choice+) >
|
||||||
|
<!-- each choice element specifies one possible value -->
|
||||||
|
<!ELEMENT choice EMPTY >
|
||||||
|
<!ATTLIST choice value CDATA #REQUIRED >
|
||||||
|
|
||||||
|
<!-- aliases is only allowed for keys with enumerated type or with choices -->
|
||||||
|
<!ELEMENT aliases (alias+) >
|
||||||
|
<!-- each alias element specifies an alias for one of the possible values -->
|
||||||
|
<!ELEMENT alias EMPTY >
|
||||||
|
<!ATTLIST alias value CDATA #REQUIRED >
|
||||||
|
|
||||||
|
<!ELEMENT child EMPTY >
|
||||||
|
<!ATTLIST child name CDATA #REQUIRED
|
||||||
|
schema CDATA #REQUIRED >
|
||||||
|
|
||||||
|
<!ELEMENT override (#PCDATA) >
|
||||||
|
<!ATTLIST override name CDATA #REQUIRED
|
||||||
|
l10n CDATA #IMPLIED
|
||||||
|
context CDATA #IMPLIED >
|
BIN
gtk-nsis-pack/share/glib-2.0/schemas/gschemas.compiled
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
|
||||||
|
<schemalist>
|
||||||
|
|
||||||
|
<enum id='org.gtk.Demo.Color'>
|
||||||
|
<value nick='red' value='0'/>
|
||||||
|
<value nick='green' value='1'/>
|
||||||
|
<value nick='blue' value='2'/>
|
||||||
|
</enum>
|
||||||
|
|
||||||
|
<schema id='org.gtk.Demo' path='/org/gtk/Demo/'>
|
||||||
|
<key name='color' enum='org.gtk.Demo.Color'>
|
||||||
|
<default>'red'</default>
|
||||||
|
</key>
|
||||||
|
</schema>
|
||||||
|
|
||||||
|
</schemalist>
|
@ -0,0 +1,26 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<schemalist>
|
||||||
|
|
||||||
|
<schema id='org.gtk.Settings.ColorChooser' path='/org/gtk/settings/color-chooser/'>
|
||||||
|
<key name='custom-colors' type='a(dddd)'>
|
||||||
|
<default>[]</default>
|
||||||
|
<summary>Custom colors</summary>
|
||||||
|
<description>
|
||||||
|
An array of custom colors to show in the color chooser. Each color is
|
||||||
|
specified as a tuple of four doubles, specifying RGBA values between
|
||||||
|
0 and 1.
|
||||||
|
</description>
|
||||||
|
</key>
|
||||||
|
<key name='selected-color' type='(bdddd)'>
|
||||||
|
<default>(false,1.0,1.0,1.0,1.0)</default>
|
||||||
|
<summary>The selected color</summary>
|
||||||
|
<description>
|
||||||
|
The selected color, described as a tuple whose first member is a
|
||||||
|
boolean that is true if a color was selected, and the remaining
|
||||||
|
four members are four doubles, specifying RGBA values between
|
||||||
|
0 and 1.
|
||||||
|
</description>
|
||||||
|
</key>
|
||||||
|
</schema>
|
||||||
|
|
||||||
|
</schemalist>
|
@ -0,0 +1,25 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<schemalist>
|
||||||
|
|
||||||
|
<schema id='org.gtk.Settings.Debug' path='/org/gtk/settings/debug/'>
|
||||||
|
<key name='enable-inspector-keybinding' type='b'>
|
||||||
|
<default>true</default>
|
||||||
|
<summary>Enable inspector keybinding</summary>
|
||||||
|
<description>
|
||||||
|
If this setting is true, GTK+ lets the user open an interactive
|
||||||
|
debugging window with a keybinding. The default shortcuts for
|
||||||
|
the keybinding are Control-Shift-I and Control-Shift-D.
|
||||||
|
</description>
|
||||||
|
</key>
|
||||||
|
<key name='inspector-warning' type='b'>
|
||||||
|
<default>true</default>
|
||||||
|
<summary>Inspector warning</summary>
|
||||||
|
<description>
|
||||||
|
If this setting is true, GTK+ shows a warning before letting
|
||||||
|
the user use the interactive debugger.
|
||||||
|
</description>
|
||||||
|
</key>
|
||||||
|
</schema>
|
||||||
|
|
||||||
|
</schemalist>
|
||||||
|
|
@ -0,0 +1,141 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!--
|
||||||
|
Copyright © 2010 Christian Persch
|
||||||
|
|
||||||
|
This library is free software; you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU Lesser General Public License as published by
|
||||||
|
the Free Software Foundation; either version 2.1, or (at your option)
|
||||||
|
any later version.
|
||||||
|
|
||||||
|
This library is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU Lesser General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU Lesser General Public License
|
||||||
|
along with this library. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
-->
|
||||||
|
<schemalist>
|
||||||
|
|
||||||
|
<enum id='org.gtk.Settings.FileChooser.LocationMode'>
|
||||||
|
<value nick='path-bar' value='0'/>
|
||||||
|
<value nick='filename-entry' value='1'/>
|
||||||
|
</enum>
|
||||||
|
|
||||||
|
<enum id='org.gtk.Settings.FileChooser.SortColumn'>
|
||||||
|
<value nick='name' value='0'/>
|
||||||
|
<value nick='size' value='1'/>
|
||||||
|
<value nick='modified' value='2'/>
|
||||||
|
</enum>
|
||||||
|
|
||||||
|
<enum id='org.gtk.Settings.FileChooser.SortOrder'>
|
||||||
|
<value nick='ascending' value='0'/>
|
||||||
|
<value nick='descending' value='1'/>
|
||||||
|
</enum>
|
||||||
|
|
||||||
|
<enum id='org.gtk.Settings.FileChooser.StartupMode'>
|
||||||
|
<value nick='recent' value='0'/>
|
||||||
|
<value nick='cwd' value='1'/>
|
||||||
|
</enum>
|
||||||
|
|
||||||
|
<enum id='org.gtk.Settings.FileChooser.ClockFormat'>
|
||||||
|
<value nick='24h' value='0'/>
|
||||||
|
<value nick='12h' value='1'/>
|
||||||
|
</enum>
|
||||||
|
|
||||||
|
<schema id='org.gtk.Settings.FileChooser' path='/org/gtk/settings/file-chooser/'>
|
||||||
|
<key name='last-folder-uri' type='s'>
|
||||||
|
<default>""</default>
|
||||||
|
</key>
|
||||||
|
<key name='location-mode' enum='org.gtk.Settings.FileChooser.LocationMode'>
|
||||||
|
<default>'path-bar'</default>
|
||||||
|
<summary>Location mode</summary>
|
||||||
|
<description>
|
||||||
|
Controls whether the file chooser shows just a path bar, or a visible entry
|
||||||
|
for the filename as well, for the benefit of typing-oriented users. The
|
||||||
|
possible values for these modes are "path-bar" and "filename-entry".
|
||||||
|
</description>
|
||||||
|
</key>
|
||||||
|
<key name='show-hidden' type='b'>
|
||||||
|
<default>false</default>
|
||||||
|
<summary>Show hidden files</summary>
|
||||||
|
<description>
|
||||||
|
Controls whether the file chooser shows hidden files or not.
|
||||||
|
</description>
|
||||||
|
</key>
|
||||||
|
<key type="b" name="sort-directories-first">
|
||||||
|
<default>false</default>
|
||||||
|
<summary>Show folders first</summary>
|
||||||
|
<description>
|
||||||
|
If set to true, then folders are shown before files in the list.
|
||||||
|
</description>
|
||||||
|
</key>
|
||||||
|
<key name='expand-folders' type='b'>
|
||||||
|
<default>false</default>
|
||||||
|
<summary>Expand folders</summary>
|
||||||
|
<description>This key is deprecated; do not use it.</description>
|
||||||
|
</key>
|
||||||
|
<key name='show-size-column' type='b'>
|
||||||
|
<default>true</default>
|
||||||
|
<summary>Show file sizes</summary>
|
||||||
|
<description>
|
||||||
|
Controls whether the file chooser shows a column with file sizes.
|
||||||
|
</description>
|
||||||
|
</key>
|
||||||
|
<key name='sort-column' enum='org.gtk.Settings.FileChooser.SortColumn'>
|
||||||
|
<default>'name'</default>
|
||||||
|
<summary>Sort column</summary>
|
||||||
|
<description>
|
||||||
|
Can be one of "name", "modified", or "size". It controls
|
||||||
|
which of the columns in the file chooser is used for sorting
|
||||||
|
the list of files.
|
||||||
|
</description>
|
||||||
|
</key>
|
||||||
|
<key name='sort-order' enum='org.gtk.Settings.FileChooser.SortOrder'>
|
||||||
|
<default>'ascending'</default>
|
||||||
|
<summary>Sort order</summary>
|
||||||
|
<description>
|
||||||
|
Can be one of the strings "ascending" or "descending".
|
||||||
|
</description>
|
||||||
|
</key>
|
||||||
|
<key name='window-position' type='(ii)'>
|
||||||
|
<default>(-1, -1)</default>
|
||||||
|
<summary>Window position</summary>
|
||||||
|
<description>
|
||||||
|
The (x, y) coordinates of the upper-left corner of the GtkFileChooserDialog's
|
||||||
|
window.
|
||||||
|
</description>
|
||||||
|
</key>
|
||||||
|
<key name='window-size' type='(ii)'>
|
||||||
|
<default>(-1, -1)</default>
|
||||||
|
<summary>Window size</summary>
|
||||||
|
<description>
|
||||||
|
The size (width, height) of the GtkFileChooserDialog's window, in pixels.
|
||||||
|
</description>
|
||||||
|
</key>
|
||||||
|
<key name='startup-mode' enum='org.gtk.Settings.FileChooser.StartupMode'>
|
||||||
|
<default>'recent'</default>
|
||||||
|
<summary>Startup mode</summary>
|
||||||
|
<description>
|
||||||
|
Either "recent" or "cwd"; controls whether the file chooser
|
||||||
|
starts up showing the list of recently-used files, or the
|
||||||
|
contents of the current working directory.
|
||||||
|
</description>
|
||||||
|
</key>
|
||||||
|
<key name='sidebar-width' type='i'>
|
||||||
|
<default>148</default>
|
||||||
|
<summary>Sidebar width</summary>
|
||||||
|
<description>
|
||||||
|
Width in pixels of the file chooser's places sidebar.
|
||||||
|
</description>
|
||||||
|
</key>
|
||||||
|
<key name="clock-format" enum="org.gtk.Settings.FileChooser.ClockFormat">
|
||||||
|
<default>'24h'</default>
|
||||||
|
<summary>Time format</summary>
|
||||||
|
<description>
|
||||||
|
Whether the time is shown in 24h or 12h format.
|
||||||
|
</description>
|
||||||
|
</key>
|
||||||
|
</schema>
|
||||||
|
|
||||||
|
</schemalist>
|
@ -0,0 +1,25 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<schemalist>
|
||||||
|
<schema path="/org/gtk/exampleapp/" id="org.gtk.exampleapp">
|
||||||
|
<key name="font" type="s">
|
||||||
|
<default>'Monospace 12'</default>
|
||||||
|
<summary>Font</summary>
|
||||||
|
<description>The font to be used for content.</description>
|
||||||
|
</key>
|
||||||
|
<key name="transition" type="s">
|
||||||
|
<choices>
|
||||||
|
<choice value='none'/>
|
||||||
|
<choice value='crossfade'/>
|
||||||
|
<choice value='slide-left-right'/>
|
||||||
|
</choices>
|
||||||
|
<default>'none'</default>
|
||||||
|
<summary>Transition</summary>
|
||||||
|
<description>The transition to use when switching tabs.</description>
|
||||||
|
</key>
|
||||||
|
<key name="show-words" type="b">
|
||||||
|
<default>false</default>
|
||||||
|
<summary>Show words</summary>
|
||||||
|
<description>Whether to show a word list in the sidebar</description>
|
||||||
|
</key>
|
||||||
|
</schema>
|
||||||
|
</schemalist>
|
BIN
gtk-nsis-pack/share/icons/gnome/16x16/actions/add.png
Normal file
After Width: | Height: | Size: 520 B |
After Width: | Height: | Size: 883 B |
After Width: | Height: | Size: 781 B |
After Width: | Height: | Size: 1.0 KiB |
BIN
gtk-nsis-pack/share/icons/gnome/16x16/actions/appointment.png
Normal file
After Width: | Height: | Size: 1.0 KiB |
BIN
gtk-nsis-pack/share/icons/gnome/16x16/actions/back.png
Normal file
After Width: | Height: | Size: 677 B |
BIN
gtk-nsis-pack/share/icons/gnome/16x16/actions/bookmark-new.png
Normal file
After Width: | Height: | Size: 720 B |
BIN
gtk-nsis-pack/share/icons/gnome/16x16/actions/bookmark_add.png
Normal file
After Width: | Height: | Size: 720 B |
After Width: | Height: | Size: 720 B |
BIN
gtk-nsis-pack/share/icons/gnome/16x16/actions/bottom.png
Normal file
After Width: | Height: | Size: 735 B |
BIN
gtk-nsis-pack/share/icons/gnome/16x16/actions/call-start.png
Normal file
After Width: | Height: | Size: 599 B |
BIN
gtk-nsis-pack/share/icons/gnome/16x16/actions/call-stop.png
Normal file
After Width: | Height: | Size: 563 B |
BIN
gtk-nsis-pack/share/icons/gnome/16x16/actions/centrejust.png
Normal file
After Width: | Height: | Size: 411 B |
BIN
gtk-nsis-pack/share/icons/gnome/16x16/actions/contact-new.png
Normal file
After Width: | Height: | Size: 618 B |
BIN
gtk-nsis-pack/share/icons/gnome/16x16/actions/document-new.png
Normal file
After Width: | Height: | Size: 851 B |
After Width: | Height: | Size: 1017 B |
BIN
gtk-nsis-pack/share/icons/gnome/16x16/actions/document-open.png
Normal file
After Width: | Height: | Size: 780 B |
After Width: | Height: | Size: 910 B |
After Width: | Height: | Size: 889 B |
BIN
gtk-nsis-pack/share/icons/gnome/16x16/actions/document-print.png
Normal file
After Width: | Height: | Size: 698 B |
After Width: | Height: | Size: 927 B |
After Width: | Height: | Size: 951 B |
After Width: | Height: | Size: 948 B |
After Width: | Height: | Size: 689 B |
BIN
gtk-nsis-pack/share/icons/gnome/16x16/actions/document-save.png
Normal file
After Width: | Height: | Size: 660 B |
BIN
gtk-nsis-pack/share/icons/gnome/16x16/actions/document-send.png
Normal file
After Width: | Height: | Size: 480 B |
BIN
gtk-nsis-pack/share/icons/gnome/16x16/actions/down.png
Normal file
After Width: | Height: | Size: 705 B |
BIN
gtk-nsis-pack/share/icons/gnome/16x16/actions/edit-clear.png
Normal file
After Width: | Height: | Size: 739 B |
BIN
gtk-nsis-pack/share/icons/gnome/16x16/actions/edit-copy.png
Normal file
After Width: | Height: | Size: 549 B |
BIN
gtk-nsis-pack/share/icons/gnome/16x16/actions/edit-cut.png
Normal file
After Width: | Height: | Size: 959 B |
BIN
gtk-nsis-pack/share/icons/gnome/16x16/actions/edit-delete.png
Normal file
After Width: | Height: | Size: 1.0 KiB |
After Width: | Height: | Size: 1.0 KiB |
BIN
gtk-nsis-pack/share/icons/gnome/16x16/actions/edit-find.png
Normal file
After Width: | Height: | Size: 949 B |
BIN
gtk-nsis-pack/share/icons/gnome/16x16/actions/edit-paste.png
Normal file
After Width: | Height: | Size: 722 B |
BIN
gtk-nsis-pack/share/icons/gnome/16x16/actions/edit-redo-rtl.png
Normal file
After Width: | Height: | Size: 656 B |
BIN
gtk-nsis-pack/share/icons/gnome/16x16/actions/edit-redo.png
Normal file
After Width: | Height: | Size: 647 B |
After Width: | Height: | Size: 822 B |
BIN
gtk-nsis-pack/share/icons/gnome/16x16/actions/edit-undo-rtl.png
Normal file
After Width: | Height: | Size: 642 B |
BIN
gtk-nsis-pack/share/icons/gnome/16x16/actions/edit-undo.png
Normal file
After Width: | Height: | Size: 636 B |
BIN
gtk-nsis-pack/share/icons/gnome/16x16/actions/editclear.png
Normal file
After Width: | Height: | Size: 739 B |
BIN
gtk-nsis-pack/share/icons/gnome/16x16/actions/editcopy.png
Normal file
After Width: | Height: | Size: 549 B |
BIN
gtk-nsis-pack/share/icons/gnome/16x16/actions/editcut.png
Normal file
After Width: | Height: | Size: 959 B |
BIN
gtk-nsis-pack/share/icons/gnome/16x16/actions/editdelete.png
Normal file
After Width: | Height: | Size: 1.0 KiB |
BIN
gtk-nsis-pack/share/icons/gnome/16x16/actions/editpaste.png
Normal file
After Width: | Height: | Size: 722 B |
BIN
gtk-nsis-pack/share/icons/gnome/16x16/actions/exit.png
Normal file
After Width: | Height: | Size: 781 B |
BIN
gtk-nsis-pack/share/icons/gnome/16x16/actions/filefind.png
Normal file
After Width: | Height: | Size: 949 B |
BIN
gtk-nsis-pack/share/icons/gnome/16x16/actions/filenew.png
Normal file
After Width: | Height: | Size: 851 B |
BIN
gtk-nsis-pack/share/icons/gnome/16x16/actions/fileopen.png
Normal file
After Width: | Height: | Size: 780 B |
BIN
gtk-nsis-pack/share/icons/gnome/16x16/actions/fileprint.png
Normal file
After Width: | Height: | Size: 698 B |
BIN
gtk-nsis-pack/share/icons/gnome/16x16/actions/filequickprint.png
Normal file
After Width: | Height: | Size: 889 B |
BIN
gtk-nsis-pack/share/icons/gnome/16x16/actions/filesave.png
Normal file
After Width: | Height: | Size: 660 B |
BIN
gtk-nsis-pack/share/icons/gnome/16x16/actions/filesaveas.png
Normal file
After Width: | Height: | Size: 689 B |
BIN
gtk-nsis-pack/share/icons/gnome/16x16/actions/find.png
Normal file
After Width: | Height: | Size: 949 B |
BIN
gtk-nsis-pack/share/icons/gnome/16x16/actions/finish.png
Normal file
After Width: | Height: | Size: 709 B |
BIN
gtk-nsis-pack/share/icons/gnome/16x16/actions/folder-new.png
Normal file
After Width: | Height: | Size: 841 B |
BIN
gtk-nsis-pack/share/icons/gnome/16x16/actions/folder_new.png
Normal file
After Width: | Height: | Size: 841 B |
After Width: | Height: | Size: 611 B |
After Width: | Height: | Size: 616 B |
After Width: | Height: | Size: 621 B |
After Width: | Height: | Size: 647 B |
After Width: | Height: | Size: 411 B |
After Width: | Height: | Size: 393 B |
After Width: | Height: | Size: 427 B |
After Width: | Height: | Size: 402 B |
After Width: | Height: | Size: 799 B |
After Width: | Height: | Size: 738 B |
After Width: | Height: | Size: 719 B |
After Width: | Height: | Size: 826 B |
After Width: | Height: | Size: 637 B |
After Width: | Height: | Size: 734 B |
BIN
gtk-nsis-pack/share/icons/gnome/16x16/actions/forward.png
Normal file
After Width: | Height: | Size: 640 B |
After Width: | Height: | Size: 922 B |
BIN
gtk-nsis-pack/share/icons/gnome/16x16/actions/gnome-logout.png
Normal file
After Width: | Height: | Size: 809 B |
BIN
gtk-nsis-pack/share/icons/gnome/16x16/actions/gnome-run.png
Normal file
After Width: | Height: | Size: 414 B |
After Width: | Height: | Size: 996 B |
BIN
gtk-nsis-pack/share/icons/gnome/16x16/actions/gnome-shutdown.png
Normal file
After Width: | Height: | Size: 547 B |
After Width: | Height: | Size: 454 B |
After Width: | Height: | Size: 807 B |
After Width: | Height: | Size: 456 B |
After Width: | Height: | Size: 678 B |
After Width: | Height: | Size: 647 B |
After Width: | Height: | Size: 616 B |
BIN
gtk-nsis-pack/share/icons/gnome/16x16/actions/go-bottom.png
Normal file
After Width: | Height: | Size: 735 B |
BIN
gtk-nsis-pack/share/icons/gnome/16x16/actions/go-down.png
Normal file
After Width: | Height: | Size: 705 B |
BIN
gtk-nsis-pack/share/icons/gnome/16x16/actions/go-first-rtl.png
Normal file
After Width: | Height: | Size: 709 B |
BIN
gtk-nsis-pack/share/icons/gnome/16x16/actions/go-first.png
Normal file
After Width: | Height: | Size: 720 B |
BIN
gtk-nsis-pack/share/icons/gnome/16x16/actions/go-home.png
Normal file
After Width: | Height: | Size: 844 B |
BIN
gtk-nsis-pack/share/icons/gnome/16x16/actions/go-jump.png
Normal file
After Width: | Height: | Size: 596 B |
BIN
gtk-nsis-pack/share/icons/gnome/16x16/actions/go-last-rtl.png
Normal file
After Width: | Height: | Size: 720 B |
BIN
gtk-nsis-pack/share/icons/gnome/16x16/actions/go-last.png
Normal file
After Width: | Height: | Size: 709 B |
BIN
gtk-nsis-pack/share/icons/gnome/16x16/actions/go-next-rtl.png
Normal file
After Width: | Height: | Size: 677 B |