Compare commits
13 Commits
develop
...
2f47614eaf
| Author | SHA1 | Date | |
|---|---|---|---|
| 2f47614eaf | |||
| a5f864b802 | |||
| 5e9fe86cd6 | |||
| da70244a54 | |||
| c01e81af27 | |||
| 41f39ba8cc | |||
| bebe0c7cba | |||
| 74d53690e2 | |||
| 061dbf19ad | |||
| 1798213bfc | |||
| 6bd4d97db2 | |||
| 7737e3ad6d | |||
| 3c914e64dd |
2
.gitignore
vendored
@@ -1,5 +1,3 @@
|
|||||||
cookies.txt
|
|
||||||
|
|
||||||
docs/
|
docs/
|
||||||
.idea/
|
.idea/
|
||||||
*.zip
|
*.zip
|
||||||
|
|||||||
@@ -2,11 +2,13 @@
|
|||||||
SolarFM is a Gtk+ Python file manager.
|
SolarFM is a Gtk+ Python file manager.
|
||||||
|
|
||||||
# Notes
|
# Notes
|
||||||
If not building a .deb then just move the contents of user_config to their respective folders.
|
<b>Still Work in progress! Use at own risk!</b>
|
||||||
|
|
||||||
|
Additionally, if not building a .deb then just move the contents of user_config to their respective folders.
|
||||||
Copy the share/solarfm folder to your user .config/ directory too.
|
Copy the share/solarfm folder to your user .config/ directory too.
|
||||||
|
|
||||||
`pyrightconfig.json`
|
`pyrightconfig.json`
|
||||||
<p>The pyrightconfig file needs to stay on same level as the .git folders in order to have settings detected when using pyright with lsp functionality. "pyrightconfig.json" can prompt IDEs such as Zed on settings to use and where imports are located- look at venvPath and venv. "venvPath" is parent path of "venv" where "venv" is just the name of the folder under the parent path that is the python created venv.
|
<p>The pyrightconfig file needs to stay on same level as the .git folders in order to have settings detected when using pyright with lsp functionality.</p>
|
||||||
|
|
||||||
<h6>Install Setup</h6>
|
<h6>Install Setup</h6>
|
||||||
```
|
```
|
||||||
@@ -15,7 +17,7 @@ sudo apt-get install xclip python3.8 python3-setproctitle python3-gi wget ffmpeg
|
|||||||
|
|
||||||
# Known Issues
|
# Known Issues
|
||||||
<ul>
|
<ul>
|
||||||
<li>There is a memory leak that has been slowed down but can get to 2GB over a long enough time period OR active accessing image based dirs.</li>
|
<li>The memory leak has now been mostly mitigated in that it doesn't balloon to 2GB'. Still working out where the smaller one(s) is/are.</li>
|
||||||
<li>Doing Ctrl+D when in Terminator (maybe other terminals too) somehow propagates the signal to SolarFM too.
|
<li>Doing Ctrl+D when in Terminator (maybe other terminals too) somehow propagates the signal to SolarFM too.
|
||||||
A selected file in the active quad-pane will move to trash since it is the default key-binding for that action.</li>
|
A selected file in the active quad-pane will move to trash since it is the default key-binding for that action.</li>
|
||||||
</ul>
|
</ul>
|
||||||
@@ -23,6 +25,7 @@ A selected file in the active quad-pane will move to trash since it is the defau
|
|||||||
# TODO
|
# TODO
|
||||||
<ul>
|
<ul>
|
||||||
<li>Add simpleish preview plugin for various file types.</li>
|
<li>Add simpleish preview plugin for various file types.</li>
|
||||||
|
<li>Add simpleish bulk-renamer.</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
# Images
|
# Images
|
||||||
|
|||||||
34
debs/build.sh
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Fixes ownershp
|
||||||
|
function main() {
|
||||||
|
sudo find . -type f -exec chmod 644 {} +
|
||||||
|
sudo find . -type d -exec chmod 755 {} +
|
||||||
|
|
||||||
|
# Set postrm permissions
|
||||||
|
for i in `find . -name postrm`; do
|
||||||
|
sudo chmod 755 "${i}"
|
||||||
|
done
|
||||||
|
|
||||||
|
# Set pytop permissions
|
||||||
|
for i in `find . -name pytop`; do
|
||||||
|
sudo chmod 755 "${i}"
|
||||||
|
done
|
||||||
|
|
||||||
|
sudo chown -R root:root ./*/
|
||||||
|
|
||||||
|
builder;
|
||||||
|
bash ./chownAll.sh
|
||||||
|
}
|
||||||
|
|
||||||
|
#builds debs
|
||||||
|
function builder() {
|
||||||
|
for i in `ls`; do
|
||||||
|
if [[ -d "${i}" ]]; then
|
||||||
|
dpkg --build "${i}"
|
||||||
|
else
|
||||||
|
echo "Not a dir."
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
}
|
||||||
|
main;
|
||||||
6
debs/chown_all.sh
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
function main() {
|
||||||
|
sudo chown -R "${USER}":"${USER}" .
|
||||||
|
}
|
||||||
|
main;
|
||||||
8
debs/solarfm-0-0-1-x64/DEBIAN/control
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
Package: solarfm64
|
||||||
|
Version: 0.0-1
|
||||||
|
Section: python
|
||||||
|
Priority: optional
|
||||||
|
Architecture: amd64
|
||||||
|
Depends: python3.8, wget, ffmpegthumbnailer, python3-setproctitle, python3-gi, steamcmd
|
||||||
|
Maintainer: Maxim Stewart <1itdominator@gmail.com>
|
||||||
|
Description: SolarFM is a Gtk + Python file manager.
|
||||||
12
debs/solarfm-0-0-1-x64/DEBIAN/postrm
Executable file
@@ -0,0 +1,12 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
# Note: postrm (script executed after uninstalling the package)
|
||||||
|
# set -e
|
||||||
|
|
||||||
|
|
||||||
|
if [ -f /bin/solarfm ]; then
|
||||||
|
rm /bin/solarfm
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -f /opt/solarfm.zip ]; then
|
||||||
|
rm /opt/solarfm.zip
|
||||||
|
fi
|
||||||
17
debs/solarfm-0-0-1-x64/bin/solarfm
Executable file
@@ -0,0 +1,17 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# . CONFIG.sh
|
||||||
|
|
||||||
|
# set -o xtrace ## To debug scripts
|
||||||
|
# set -o errexit ## To exit on error
|
||||||
|
# set -o errunset ## To exit if a variable is referenced but not set
|
||||||
|
|
||||||
|
|
||||||
|
function main() {
|
||||||
|
call_path=`pwd`
|
||||||
|
cd "${call_path}"
|
||||||
|
echo "Working Dir: " $(pwd)
|
||||||
|
|
||||||
|
python /opt/solarfm.zip "$@"
|
||||||
|
}
|
||||||
|
main "$@";
|
||||||
1
debs/solarfm-0-0-1-x64/opt/DELETE_ME.txt
Normal file
@@ -0,0 +1 @@
|
|||||||
|
Place the zipped up solarfm zip here amnd run the build script.
|
||||||
11
debs/solarfm-0-0-1-x64/usr/share/applications/solarfm.desktop
Executable file
@@ -0,0 +1,11 @@
|
|||||||
|
[Desktop Entry]
|
||||||
|
Name=SolarFM
|
||||||
|
GenericName=File Manager
|
||||||
|
Comment=A file manager built with Python and GObject introspection.
|
||||||
|
Exec=/bin/solarfm %F
|
||||||
|
Icon=/usr/share/solarfm/icons/solarfm.png
|
||||||
|
Type=Application
|
||||||
|
StartupNotify=true
|
||||||
|
Categories=System;FileTools;Utility;Core;GTK;FileManager;
|
||||||
|
MimeType=inode/directory;inode/mount-point;x-scheme-handler/ssh;x-scheme-handler/smb;x-scheme-handler/nfs;x-scheme-handler/ftp;x-scheme-handler/ptp;x-scheme-handler/mtp;x-scheme-handler/webdav;x-scheme-handler/http;x-scheme-handler/https;
|
||||||
|
Terminal=false
|
||||||
22
debs/solarfm-0-0-1-x64/usr/share/doc/solarfm/copyright
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
SolarFM is copyright 2021 Maxim Stewart.
|
||||||
|
SolarFM is currently developed by ITDominator <1itdominator@gmail.com>.
|
||||||
|
|
||||||
|
License: GPLv2
|
||||||
|
|
||||||
|
This program is free software; you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation; either version 2 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
This program 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 General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program; if not, write to the Free Software
|
||||||
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||||
|
|
||||||
|
See /usr/share/common-licenses/GPL-2, or
|
||||||
|
<http://www.gnu.org/copyleft/gpl.txt> for the terms of the latest version
|
||||||
|
of the GNU General Public License.
|
||||||
968
debs/solarfm-0-0-1-x64/usr/share/solarfm/Main_Window.glade
Normal file
@@ -0,0 +1,968 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!-- Generated with glade 3.40.0 -->
|
||||||
|
<interface>
|
||||||
|
<requires lib="gtk+" version="3.22"/>
|
||||||
|
<object class="GtkImage" id="image1">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<property name="stock">gtk-save-as</property>
|
||||||
|
</object>
|
||||||
|
<object class="GtkImage" id="image2">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<property name="stock">gtk-file</property>
|
||||||
|
</object>
|
||||||
|
<object class="GtkImage" id="image3">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<property name="stock">gtk-justify-center</property>
|
||||||
|
</object>
|
||||||
|
<object class="GtkImage" id="image4">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<property name="stock">gtk-save</property>
|
||||||
|
</object>
|
||||||
|
<object class="GtkImage" id="image5">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<property name="stock">gtk-execute</property>
|
||||||
|
</object>
|
||||||
|
<object class="GtkImage" id="image6">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<property name="stock">gtk-redo</property>
|
||||||
|
</object>
|
||||||
|
<object class="GtkImage" id="image7">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<property name="stock">gtk-justify-center</property>
|
||||||
|
</object>
|
||||||
|
<object class="GtkImage" id="io_img">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<property name="stock">gtk-stop</property>
|
||||||
|
</object>
|
||||||
|
<object class="GtkImage" id="tggl_notebook_1_img">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<property name="stock">gtk-apply</property>
|
||||||
|
<property name="icon_size">3</property>
|
||||||
|
</object>
|
||||||
|
<object class="GtkImage" id="tggl_notebook_2_img">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<property name="stock">gtk-apply</property>
|
||||||
|
<property name="icon_size">3</property>
|
||||||
|
</object>
|
||||||
|
<object class="GtkImage" id="tggl_notebook_3_img">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<property name="stock">gtk-apply</property>
|
||||||
|
<property name="icon_size">3</property>
|
||||||
|
</object>
|
||||||
|
<object class="GtkImage" id="tggl_notebook_4_img">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<property name="stock">gtk-apply</property>
|
||||||
|
<property name="icon_size">3</property>
|
||||||
|
</object>
|
||||||
|
<object class="GtkBox" id="core_widget">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<property name="orientation">vertical</property>
|
||||||
|
<property name="baseline-position">top</property>
|
||||||
|
<child>
|
||||||
|
<object class="GtkBox" id="main_menu_bar">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<child>
|
||||||
|
<object class="GtkMenuBar">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<child>
|
||||||
|
<object class="GtkMenuItem">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<property name="label" translatable="yes">_File</property>
|
||||||
|
<property name="use-underline">True</property>
|
||||||
|
<child type="submenu">
|
||||||
|
<object class="GtkMenu">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<child>
|
||||||
|
<object class="GtkImageMenuItem">
|
||||||
|
<property name="label">gtk-new</property>
|
||||||
|
<property name="name">create</property>
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<property name="tooltip-text" translatable="yes">New File/Folder...</property>
|
||||||
|
<property name="use-underline">True</property>
|
||||||
|
<property name="use-stock">True</property>
|
||||||
|
<signal name="button-release-event" handler="do_action_from_menu_controls" swapped="no"/>
|
||||||
|
</object>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<object class="GtkImageMenuItem">
|
||||||
|
<property name="label">gtk-open</property>
|
||||||
|
<property name="name">open</property>
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<property name="tooltip-text" translatable="yes">Open...</property>
|
||||||
|
<property name="use-underline">True</property>
|
||||||
|
<property name="use-stock">True</property>
|
||||||
|
<signal name="button-release-event" handler="do_action_from_menu_controls" swapped="no"/>
|
||||||
|
</object>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<object class="GtkSeparatorMenuItem">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
</object>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<object class="GtkImageMenuItem">
|
||||||
|
<property name="label">Reload Plugins</property>
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<property name="image">image6</property>
|
||||||
|
<property name="use-stock">False</property>
|
||||||
|
<signal name="button-release-event" handler="reload_plugins" swapped="no"/>
|
||||||
|
</object>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<object class="GtkImageMenuItem">
|
||||||
|
<property name="label">Terminal</property>
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<property name="image">image5</property>
|
||||||
|
<property name="use-stock">False</property>
|
||||||
|
<signal name="button-release-event" handler="open_terminal" swapped="no"/>
|
||||||
|
</object>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<object class="GtkMenuItem">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<property name="label" translatable="yes">Session</property>
|
||||||
|
<child type="submenu">
|
||||||
|
<object class="GtkMenu">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<child>
|
||||||
|
<object class="GtkImageMenuItem">
|
||||||
|
<property name="label">Save Session</property>
|
||||||
|
<property name="name">save_session</property>
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<property name="tooltip-text" translatable="yes">New File/Folder...</property>
|
||||||
|
<property name="image">image4</property>
|
||||||
|
<property name="use-stock">False</property>
|
||||||
|
<signal name="button-release-event" handler="do_action_from_menu_controls" swapped="no"/>
|
||||||
|
</object>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<object class="GtkImageMenuItem">
|
||||||
|
<property name="label">Save Session As</property>
|
||||||
|
<property name="name">save_session_as</property>
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<property name="tooltip-text" translatable="yes">New File/Folder...</property>
|
||||||
|
<property name="image">image1</property>
|
||||||
|
<property name="use-stock">False</property>
|
||||||
|
<signal name="button-release-event" handler="do_action_from_menu_controls" swapped="no"/>
|
||||||
|
</object>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<object class="GtkImageMenuItem">
|
||||||
|
<property name="label">Load Session</property>
|
||||||
|
<property name="name">load_session</property>
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<property name="tooltip-text" translatable="yes">New File/Folder...</property>
|
||||||
|
<property name="image">image2</property>
|
||||||
|
<property name="use-stock">False</property>
|
||||||
|
<signal name="button-release-event" handler="do_action_from_menu_controls" swapped="no"/>
|
||||||
|
</object>
|
||||||
|
</child>
|
||||||
|
</object>
|
||||||
|
</child>
|
||||||
|
</object>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<object class="GtkMenuItem">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<property name="label" translatable="yes">Debug</property>
|
||||||
|
<child type="submenu">
|
||||||
|
<object class="GtkMenu">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<child>
|
||||||
|
<object class="GtkImageMenuItem">
|
||||||
|
<property name="label">Show Errors</property>
|
||||||
|
<property name="name">messages_popup</property>
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<property name="image">image3</property>
|
||||||
|
<property name="use-stock">False</property>
|
||||||
|
<signal name="button-release-event" handler="do_action_from_menu_controls" swapped="no"/>
|
||||||
|
</object>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<object class="GtkImageMenuItem">
|
||||||
|
<property name="label">Show Interactive Debugger</property>
|
||||||
|
<property name="name">ui_debug</property>
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<property name="image">image7</property>
|
||||||
|
<property name="use-stock">False</property>
|
||||||
|
<signal name="button-release-event" handler="do_action_from_menu_controls" swapped="no"/>
|
||||||
|
</object>
|
||||||
|
</child>
|
||||||
|
</object>
|
||||||
|
</child>
|
||||||
|
</object>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<object class="GtkImageMenuItem">
|
||||||
|
<property name="label">gtk-quit</property>
|
||||||
|
<property name="name">tear_down</property>
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<property name="use-underline">True</property>
|
||||||
|
<property name="use-stock">True</property>
|
||||||
|
<signal name="button-release-event" handler="do_action_from_menu_controls" swapped="no"/>
|
||||||
|
</object>
|
||||||
|
</child>
|
||||||
|
</object>
|
||||||
|
</child>
|
||||||
|
</object>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<object class="GtkMenuItem">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<property name="label" translatable="yes">_Edit</property>
|
||||||
|
<property name="use-underline">True</property>
|
||||||
|
<child type="submenu">
|
||||||
|
<object class="GtkMenu">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<child>
|
||||||
|
<object class="GtkImageMenuItem">
|
||||||
|
<property name="label">gtk-cut</property>
|
||||||
|
<property name="name">cut</property>
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<property name="use-underline">True</property>
|
||||||
|
<property name="use-stock">True</property>
|
||||||
|
<signal name="button-release-event" handler="do_action_from_menu_controls" swapped="no"/>
|
||||||
|
</object>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<object class="GtkImageMenuItem">
|
||||||
|
<property name="label">gtk-copy</property>
|
||||||
|
<property name="name">copy</property>
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<property name="use-underline">True</property>
|
||||||
|
<property name="use-stock">True</property>
|
||||||
|
<signal name="button-release-event" handler="do_action_from_menu_controls" swapped="no"/>
|
||||||
|
</object>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<object class="GtkImageMenuItem">
|
||||||
|
<property name="label">gtk-paste</property>
|
||||||
|
<property name="name">paste</property>
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<property name="use-underline">True</property>
|
||||||
|
<property name="use-stock">True</property>
|
||||||
|
<signal name="button-release-event" handler="do_action_from_menu_controls" swapped="no"/>
|
||||||
|
</object>
|
||||||
|
</child>
|
||||||
|
</object>
|
||||||
|
</child>
|
||||||
|
</object>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<object class="GtkMenuItem">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<property name="label" translatable="yes">_Help</property>
|
||||||
|
<property name="use-underline">True</property>
|
||||||
|
<child type="submenu">
|
||||||
|
<object class="GtkMenu">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<child>
|
||||||
|
<object class="GtkImageMenuItem">
|
||||||
|
<property name="label">gtk-about</property>
|
||||||
|
<property name="name">about_page</property>
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<property name="use-underline">True</property>
|
||||||
|
<property name="use-stock">True</property>
|
||||||
|
<signal name="button-release-event" handler="do_action_from_menu_controls" swapped="no"/>
|
||||||
|
</object>
|
||||||
|
</child>
|
||||||
|
</object>
|
||||||
|
</child>
|
||||||
|
</object>
|
||||||
|
</child>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="expand">True</property>
|
||||||
|
<property name="fill">True</property>
|
||||||
|
<property name="position">0</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<object class="GtkButtonBox" id="main_menu_bttn_box_bar">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<property name="spacing">5</property>
|
||||||
|
<property name="layout-style">start</property>
|
||||||
|
<child>
|
||||||
|
<object class="GtkButton" id="plugins_button">
|
||||||
|
<property name="label" translatable="yes">Plugins</property>
|
||||||
|
<property name="name">plugins_popup</property>
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">True</property>
|
||||||
|
<property name="receives-default">True</property>
|
||||||
|
<signal name="released" handler="do_action_from_menu_controls" swapped="no"/>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="expand">True</property>
|
||||||
|
<property name="fill">True</property>
|
||||||
|
<property name="position">0</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<object class="GtkToggleButton" id="tggl_notebook_1">
|
||||||
|
<property name="name">tggl_notebook_1</property>
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">True</property>
|
||||||
|
<property name="receives-default">True</property>
|
||||||
|
<property name="image">tggl_notebook_1_img</property>
|
||||||
|
<property name="always-show-image">True</property>
|
||||||
|
<signal name="released" handler="toggle_notebook_pane" swapped="no"/>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="expand">True</property>
|
||||||
|
<property name="fill">True</property>
|
||||||
|
<property name="position">1</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<object class="GtkToggleButton" id="tggl_notebook_2">
|
||||||
|
<property name="name">tggl_notebook_2</property>
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">True</property>
|
||||||
|
<property name="receives-default">True</property>
|
||||||
|
<property name="image">tggl_notebook_2_img</property>
|
||||||
|
<property name="always-show-image">True</property>
|
||||||
|
<signal name="released" handler="toggle_notebook_pane" swapped="no"/>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="expand">True</property>
|
||||||
|
<property name="fill">True</property>
|
||||||
|
<property name="position">2</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<object class="GtkToggleButton" id="tggl_notebook_3">
|
||||||
|
<property name="name">tggl_notebook_3</property>
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">True</property>
|
||||||
|
<property name="receives-default">True</property>
|
||||||
|
<property name="image">tggl_notebook_3_img</property>
|
||||||
|
<property name="always-show-image">True</property>
|
||||||
|
<signal name="released" handler="toggle_notebook_pane" swapped="no"/>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="expand">True</property>
|
||||||
|
<property name="fill">True</property>
|
||||||
|
<property name="position">3</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<object class="GtkToggleButton" id="tggl_notebook_4">
|
||||||
|
<property name="name">tggl_notebook_4</property>
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">True</property>
|
||||||
|
<property name="receives-default">True</property>
|
||||||
|
<property name="image">tggl_notebook_4_img</property>
|
||||||
|
<property name="always-show-image">True</property>
|
||||||
|
<signal name="released" handler="toggle_notebook_pane" swapped="no"/>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="expand">True</property>
|
||||||
|
<property name="fill">True</property>
|
||||||
|
<property name="position">4</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<object class="GtkButton" id="io_button">
|
||||||
|
<property name="label" translatable="yes">I/O</property>
|
||||||
|
<property name="name">io_popup</property>
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">True</property>
|
||||||
|
<property name="receives-default">True</property>
|
||||||
|
<property name="image">io_img</property>
|
||||||
|
<property name="always-show-image">True</property>
|
||||||
|
<signal name="released" handler="do_action_from_menu_controls" swapped="no"/>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="expand">True</property>
|
||||||
|
<property name="fill">True</property>
|
||||||
|
<property name="position">5</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="expand">False</property>
|
||||||
|
<property name="fill">True</property>
|
||||||
|
<property name="position">1</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<object class="GtkButton">
|
||||||
|
<property name="label" translatable="yes"> </property>
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="sensitive">False</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<property name="focus-on-click">False</property>
|
||||||
|
<property name="receives-default">False</property>
|
||||||
|
<property name="double-buffered">False</property>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="expand">True</property>
|
||||||
|
<property name="fill">True</property>
|
||||||
|
<property name="position">2</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="expand">False</property>
|
||||||
|
<property name="fill">True</property>
|
||||||
|
<property name="position">0</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<object class="GtkBox" id="path_menu_bar">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<child>
|
||||||
|
<object class="GtkButton" id="go_home">
|
||||||
|
<property name="label">gtk-home</property>
|
||||||
|
<property name="name">go_home</property>
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">True</property>
|
||||||
|
<property name="receives-default">True</property>
|
||||||
|
<property name="use-stock">True</property>
|
||||||
|
<property name="always-show-image">True</property>
|
||||||
|
<signal name="released" handler="do_action_from_bar_controls" swapped="no"/>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="expand">False</property>
|
||||||
|
<property name="fill">True</property>
|
||||||
|
<property name="position">0</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<object class="GtkButton" id="create_tab">
|
||||||
|
<property name="label">gtk-add</property>
|
||||||
|
<property name="name">create_tab</property>
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">True</property>
|
||||||
|
<property name="receives-default">True</property>
|
||||||
|
<property name="use-stock">True</property>
|
||||||
|
<property name="always-show-image">True</property>
|
||||||
|
<signal name="released" handler="do_action_from_bar_controls" swapped="no"/>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="expand">False</property>
|
||||||
|
<property name="fill">True</property>
|
||||||
|
<property name="position">1</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<object class="GtkButton" id="go_up">
|
||||||
|
<property name="label">gtk-go-up</property>
|
||||||
|
<property name="name">go_up</property>
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">True</property>
|
||||||
|
<property name="receives-default">True</property>
|
||||||
|
<property name="use-stock">True</property>
|
||||||
|
<property name="always-show-image">True</property>
|
||||||
|
<signal name="released" handler="do_action_from_bar_controls" swapped="no"/>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="expand">False</property>
|
||||||
|
<property name="fill">True</property>
|
||||||
|
<property name="position">2</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<object class="GtkEntry" id="path_entry">
|
||||||
|
<property name="name">path_entry</property>
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">True</property>
|
||||||
|
<property name="hexpand">True</property>
|
||||||
|
<property name="placeholder-text" translatable="yes">Path...</property>
|
||||||
|
<signal name="changed" handler="do_action_from_bar_controls" swapped="no"/>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="expand">True</property>
|
||||||
|
<property name="fill">True</property>
|
||||||
|
<property name="position">3</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<object class="GtkButton" id="refresh_tab">
|
||||||
|
<property name="label">gtk-refresh</property>
|
||||||
|
<property name="name">refresh_view</property>
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">True</property>
|
||||||
|
<property name="receives-default">True</property>
|
||||||
|
<property name="use-stock">True</property>
|
||||||
|
<property name="always-show-image">True</property>
|
||||||
|
<signal name="released" handler="do_action_from_bar_controls" swapped="no"/>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="expand">False</property>
|
||||||
|
<property name="fill">True</property>
|
||||||
|
<property name="position">4</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="expand">False</property>
|
||||||
|
<property name="fill">True</property>
|
||||||
|
<property name="position">1</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<object class="GtkPaned" id="pane_master">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">True</property>
|
||||||
|
<property name="hexpand">True</property>
|
||||||
|
<property name="vexpand">True</property>
|
||||||
|
<property name="orientation">vertical</property>
|
||||||
|
<property name="wide-handle">True</property>
|
||||||
|
<child>
|
||||||
|
<object class="GtkPaned" id="pane_top">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">True</property>
|
||||||
|
<property name="margin-bottom">5</property>
|
||||||
|
<property name="hexpand">True</property>
|
||||||
|
<property name="vexpand">True</property>
|
||||||
|
<property name="wide-handle">True</property>
|
||||||
|
<child>
|
||||||
|
<object class="GtkNotebook" id="window_1">
|
||||||
|
<property name="name">notebook1</property>
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">True</property>
|
||||||
|
<property name="can-default">True</property>
|
||||||
|
<property name="margin-left">5</property>
|
||||||
|
<property name="margin-right">5</property>
|
||||||
|
<property name="margin-top">5</property>
|
||||||
|
<property name="margin-bottom">5</property>
|
||||||
|
<property name="show-border">False</property>
|
||||||
|
<property name="scrollable">True</property>
|
||||||
|
<property name="group-name">sfm_windows</property>
|
||||||
|
<signal name="create-window" handler="on_tab_dnded" swapped="no"/>
|
||||||
|
<signal name="page-reordered" handler="on_tab_reorder" swapped="no"/>
|
||||||
|
<signal name="switch-page" handler="on_tab_switch_update" swapped="no"/>
|
||||||
|
<child>
|
||||||
|
<placeholder/>
|
||||||
|
</child>
|
||||||
|
<child type="tab">
|
||||||
|
<placeholder/>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<placeholder/>
|
||||||
|
</child>
|
||||||
|
<child type="tab">
|
||||||
|
<placeholder/>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<placeholder/>
|
||||||
|
</child>
|
||||||
|
<child type="tab">
|
||||||
|
<placeholder/>
|
||||||
|
</child>
|
||||||
|
<child type="action-start">
|
||||||
|
<object class="GtkButtonBox">
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<property name="layout-style">start</property>
|
||||||
|
<child>
|
||||||
|
<object class="GtkButton">
|
||||||
|
<property name="label">gtk-go-back</property>
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">True</property>
|
||||||
|
<property name="receives-default">True</property>
|
||||||
|
<property name="use-stock">True</property>
|
||||||
|
<property name="always-show-image">True</property>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="expand">True</property>
|
||||||
|
<property name="fill">True</property>
|
||||||
|
<property name="position">0</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<object class="GtkButton">
|
||||||
|
<property name="label">gtk-go-forward</property>
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">True</property>
|
||||||
|
<property name="receives-default">True</property>
|
||||||
|
<property name="use-stock">True</property>
|
||||||
|
<property name="always-show-image">True</property>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="expand">True</property>
|
||||||
|
<property name="fill">True</property>
|
||||||
|
<property name="position">1</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="tab-fill">False</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
<child type="action-end">
|
||||||
|
<object class="GtkSearchEntry" id="win1_search_field">
|
||||||
|
<property name="name">window_1</property>
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">True</property>
|
||||||
|
<property name="primary-icon-name">edit-find-symbolic</property>
|
||||||
|
<property name="primary-icon-activatable">False</property>
|
||||||
|
<property name="primary-icon-sensitive">False</property>
|
||||||
|
<property name="placeholder-text" translatable="yes">Search...</property>
|
||||||
|
<signal name="changed" handler="do_file_search" swapped="no"/>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="tab-fill">False</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="resize">False</property>
|
||||||
|
<property name="shrink">False</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<object class="GtkNotebook" id="window_2">
|
||||||
|
<property name="name">notebook2</property>
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">True</property>
|
||||||
|
<property name="can-default">True</property>
|
||||||
|
<property name="margin-left">5</property>
|
||||||
|
<property name="margin-right">5</property>
|
||||||
|
<property name="margin-top">5</property>
|
||||||
|
<property name="margin-bottom">5</property>
|
||||||
|
<property name="show-border">False</property>
|
||||||
|
<property name="scrollable">True</property>
|
||||||
|
<property name="group-name">sfm_windows</property>
|
||||||
|
<signal name="create-window" handler="on_tab_dnded" swapped="no"/>
|
||||||
|
<signal name="page-reordered" handler="on_tab_reorder" swapped="no"/>
|
||||||
|
<signal name="switch-page" handler="on_tab_switch_update" swapped="no"/>
|
||||||
|
<child>
|
||||||
|
<placeholder/>
|
||||||
|
</child>
|
||||||
|
<child type="tab">
|
||||||
|
<placeholder/>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<placeholder/>
|
||||||
|
</child>
|
||||||
|
<child type="tab">
|
||||||
|
<placeholder/>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<placeholder/>
|
||||||
|
</child>
|
||||||
|
<child type="tab">
|
||||||
|
<placeholder/>
|
||||||
|
</child>
|
||||||
|
<child type="action-start">
|
||||||
|
<object class="GtkButtonBox">
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<property name="layout-style">start</property>
|
||||||
|
<child>
|
||||||
|
<object class="GtkButton">
|
||||||
|
<property name="label">gtk-go-back</property>
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">True</property>
|
||||||
|
<property name="receives-default">True</property>
|
||||||
|
<property name="use-stock">True</property>
|
||||||
|
<property name="always-show-image">True</property>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="expand">True</property>
|
||||||
|
<property name="fill">True</property>
|
||||||
|
<property name="position">0</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<object class="GtkButton">
|
||||||
|
<property name="label">gtk-go-forward</property>
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">True</property>
|
||||||
|
<property name="receives-default">True</property>
|
||||||
|
<property name="use-stock">True</property>
|
||||||
|
<property name="always-show-image">True</property>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="expand">True</property>
|
||||||
|
<property name="fill">True</property>
|
||||||
|
<property name="position">1</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="tab-fill">False</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
<child type="action-end">
|
||||||
|
<object class="GtkSearchEntry" id="win2_search_field">
|
||||||
|
<property name="name">window_2</property>
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">True</property>
|
||||||
|
<property name="primary-icon-name">edit-find-symbolic</property>
|
||||||
|
<property name="primary-icon-activatable">False</property>
|
||||||
|
<property name="primary-icon-sensitive">False</property>
|
||||||
|
<property name="placeholder-text" translatable="yes">Search...</property>
|
||||||
|
<signal name="changed" handler="do_file_search" swapped="no"/>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="tab-fill">False</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="resize">False</property>
|
||||||
|
<property name="shrink">False</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="resize">True</property>
|
||||||
|
<property name="shrink">True</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<object class="GtkPaned" id="pane_bottom">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">True</property>
|
||||||
|
<property name="margin-top">5</property>
|
||||||
|
<property name="hexpand">True</property>
|
||||||
|
<property name="vexpand">True</property>
|
||||||
|
<property name="wide-handle">True</property>
|
||||||
|
<child>
|
||||||
|
<object class="GtkNotebook" id="window_3">
|
||||||
|
<property name="name">notebook3</property>
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">True</property>
|
||||||
|
<property name="can-default">True</property>
|
||||||
|
<property name="margin-left">5</property>
|
||||||
|
<property name="margin-right">5</property>
|
||||||
|
<property name="margin-top">5</property>
|
||||||
|
<property name="margin-bottom">5</property>
|
||||||
|
<property name="show-border">False</property>
|
||||||
|
<property name="scrollable">True</property>
|
||||||
|
<property name="group-name">sfm_windows</property>
|
||||||
|
<signal name="create-window" handler="on_tab_dnded" swapped="no"/>
|
||||||
|
<signal name="page-reordered" handler="on_tab_reorder" swapped="no"/>
|
||||||
|
<signal name="switch-page" handler="on_tab_switch_update" swapped="no"/>
|
||||||
|
<child>
|
||||||
|
<placeholder/>
|
||||||
|
</child>
|
||||||
|
<child type="tab">
|
||||||
|
<placeholder/>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<placeholder/>
|
||||||
|
</child>
|
||||||
|
<child type="tab">
|
||||||
|
<placeholder/>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<placeholder/>
|
||||||
|
</child>
|
||||||
|
<child type="tab">
|
||||||
|
<placeholder/>
|
||||||
|
</child>
|
||||||
|
<child type="action-start">
|
||||||
|
<object class="GtkButtonBox">
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<property name="layout-style">start</property>
|
||||||
|
<child>
|
||||||
|
<object class="GtkButton">
|
||||||
|
<property name="label">gtk-go-back</property>
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">True</property>
|
||||||
|
<property name="receives-default">True</property>
|
||||||
|
<property name="use-stock">True</property>
|
||||||
|
<property name="always-show-image">True</property>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="expand">True</property>
|
||||||
|
<property name="fill">True</property>
|
||||||
|
<property name="position">0</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<object class="GtkButton">
|
||||||
|
<property name="label">gtk-go-forward</property>
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">True</property>
|
||||||
|
<property name="receives-default">True</property>
|
||||||
|
<property name="use-stock">True</property>
|
||||||
|
<property name="always-show-image">True</property>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="expand">True</property>
|
||||||
|
<property name="fill">True</property>
|
||||||
|
<property name="position">1</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="tab-fill">False</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
<child type="action-end">
|
||||||
|
<object class="GtkSearchEntry" id="win3_search_field">
|
||||||
|
<property name="name">window_3</property>
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">True</property>
|
||||||
|
<property name="primary-icon-name">edit-find-symbolic</property>
|
||||||
|
<property name="primary-icon-activatable">False</property>
|
||||||
|
<property name="primary-icon-sensitive">False</property>
|
||||||
|
<property name="placeholder-text" translatable="yes">Search...</property>
|
||||||
|
<signal name="changed" handler="do_file_search" swapped="no"/>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="tab-fill">False</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="resize">False</property>
|
||||||
|
<property name="shrink">False</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<object class="GtkNotebook" id="window_4">
|
||||||
|
<property name="name">notebook4</property>
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">True</property>
|
||||||
|
<property name="can-default">True</property>
|
||||||
|
<property name="margin-right">5</property>
|
||||||
|
<property name="margin-top">5</property>
|
||||||
|
<property name="margin-bottom">5</property>
|
||||||
|
<property name="show-border">False</property>
|
||||||
|
<property name="scrollable">True</property>
|
||||||
|
<property name="group-name">sfm_windows</property>
|
||||||
|
<signal name="create-window" handler="on_tab_dnded" swapped="no"/>
|
||||||
|
<signal name="page-reordered" handler="on_tab_reorder" swapped="no"/>
|
||||||
|
<signal name="switch-page" handler="on_tab_switch_update" swapped="no"/>
|
||||||
|
<child>
|
||||||
|
<placeholder/>
|
||||||
|
</child>
|
||||||
|
<child type="tab">
|
||||||
|
<placeholder/>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<placeholder/>
|
||||||
|
</child>
|
||||||
|
<child type="tab">
|
||||||
|
<placeholder/>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<placeholder/>
|
||||||
|
</child>
|
||||||
|
<child type="tab">
|
||||||
|
<placeholder/>
|
||||||
|
</child>
|
||||||
|
<child type="action-start">
|
||||||
|
<object class="GtkButtonBox">
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<property name="layout-style">start</property>
|
||||||
|
<child>
|
||||||
|
<object class="GtkButton">
|
||||||
|
<property name="label">gtk-go-back</property>
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">True</property>
|
||||||
|
<property name="receives-default">True</property>
|
||||||
|
<property name="use-stock">True</property>
|
||||||
|
<property name="always-show-image">True</property>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="expand">True</property>
|
||||||
|
<property name="fill">True</property>
|
||||||
|
<property name="position">0</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<object class="GtkButton">
|
||||||
|
<property name="label">gtk-go-forward</property>
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">True</property>
|
||||||
|
<property name="receives-default">True</property>
|
||||||
|
<property name="use-stock">True</property>
|
||||||
|
<property name="always-show-image">True</property>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="expand">True</property>
|
||||||
|
<property name="fill">True</property>
|
||||||
|
<property name="position">1</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="tab-fill">False</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
<child type="action-end">
|
||||||
|
<object class="GtkSearchEntry" id="win4_search_field">
|
||||||
|
<property name="name">window_4</property>
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">True</property>
|
||||||
|
<property name="primary-icon-name">edit-find-symbolic</property>
|
||||||
|
<property name="primary-icon-activatable">False</property>
|
||||||
|
<property name="primary-icon-sensitive">False</property>
|
||||||
|
<property name="placeholder-text" translatable="yes">Search...</property>
|
||||||
|
<signal name="changed" handler="do_file_search" swapped="no"/>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="tab-fill">False</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="resize">False</property>
|
||||||
|
<property name="shrink">False</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="resize">True</property>
|
||||||
|
<property name="shrink">True</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="expand">True</property>
|
||||||
|
<property name="fill">True</property>
|
||||||
|
<property name="position">2</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<placeholder/>
|
||||||
|
</child>
|
||||||
|
</object>
|
||||||
|
</interface>
|
||||||
@@ -2,7 +2,6 @@
|
|||||||
"Open Actions": {
|
"Open Actions": {
|
||||||
"Open": ["STOCK_OPEN", "open"],
|
"Open": ["STOCK_OPEN", "open"],
|
||||||
"Open With": ["STOCK_OPEN", "open_with"],
|
"Open With": ["STOCK_OPEN", "open_with"],
|
||||||
"Open 2 Tab": ["STOCK_OPEN", "open_2_new_tab"],
|
|
||||||
"Execute": ["STOCK_EXECUTE", "execute"],
|
"Execute": ["STOCK_EXECUTE", "execute"],
|
||||||
"Execute in Terminal": ["STOCK_EXECUTE", "execute_in_terminal"]
|
"Execute in Terminal": ["STOCK_EXECUTE", "execute_in_terminal"]
|
||||||
},
|
},
|
||||||
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/3g2.png
Normal file
|
After Width: | Height: | Size: 3.7 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/3gp.png
Normal file
|
After Width: | Height: | Size: 3.7 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/ai.png
Normal file
|
After Width: | Height: | Size: 3.5 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/air.png
Normal file
|
After Width: | Height: | Size: 3.1 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/asf.png
Normal file
|
After Width: | Height: | Size: 3.1 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/avi.png
Normal file
|
After Width: | Height: | Size: 3.1 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/bib.png
Normal file
|
After Width: | Height: | Size: 3.4 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/cls.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/csv.png
Normal file
|
After Width: | Height: | Size: 4.4 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/deb.png
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/djvu.png
Normal file
|
After Width: | Height: | Size: 4.9 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/dmg.png
Normal file
|
After Width: | Height: | Size: 2.5 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/doc.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/docx.png
Normal file
|
After Width: | Height: | Size: 4.0 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/dwf.png
Normal file
|
After Width: | Height: | Size: 4.2 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/dwg.png
Normal file
|
After Width: | Height: | Size: 3.0 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/eps.png
Normal file
|
After Width: | Height: | Size: 2.2 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/epub.png
Normal file
|
After Width: | Height: | Size: 2.7 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/exe.png
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/f.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/f77.png
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/f90.png
Normal file
|
After Width: | Height: | Size: 2.2 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/flac.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/flv.png
Normal file
|
After Width: | Height: | Size: 3.1 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/gif.png
Normal file
|
After Width: | Height: | Size: 2.7 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/gz.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/ico.png
Normal file
|
After Width: | Height: | Size: 3.1 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/indd.png
Normal file
|
After Width: | Height: | Size: 3.9 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/iso.png
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/jpeg.png
Normal file
|
After Width: | Height: | Size: 3.2 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/jpg.png
Normal file
|
After Width: | Height: | Size: 3.2 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/log.png
Normal file
|
After Width: | Height: | Size: 2.4 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/m4a.png
Normal file
|
After Width: | Height: | Size: 3.7 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/m4v.png
Normal file
|
After Width: | Height: | Size: 3.1 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/midi.png
Normal file
|
After Width: | Height: | Size: 3.4 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/mkv.png
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/mov.png
Normal file
|
After Width: | Height: | Size: 3.1 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/mp3.png
Normal file
|
After Width: | Height: | Size: 4.0 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/mp4.png
Normal file
|
After Width: | Height: | Size: 3.1 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/mpeg.png
Normal file
|
After Width: | Height: | Size: 3.1 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/mpg.png
Normal file
|
After Width: | Height: | Size: 3.1 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/msi.png
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/odp.png
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/ods.png
Normal file
|
After Width: | Height: | Size: 2.4 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/odt.png
Normal file
|
After Width: | Height: | Size: 3.6 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/oga.png
Normal file
|
After Width: | Height: | Size: 3.1 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/ogg.png
Normal file
|
After Width: | Height: | Size: 5.0 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/ogv.png
Normal file
|
After Width: | Height: | Size: 5.8 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/pdf.png
Normal file
|
After Width: | Height: | Size: 3.3 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/png.png
Normal file
|
After Width: | Height: | Size: 2.9 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/pps.png
Normal file
|
After Width: | Height: | Size: 3.1 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/ppsx.png
Normal file
|
After Width: | Height: | Size: 3.2 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/ppt.png
Normal file
|
After Width: | Height: | Size: 3.3 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/pptx.png
Normal file
|
After Width: | Height: | Size: 3.8 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/psd.png
Normal file
|
After Width: | Height: | Size: 3.8 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/pub.png
Normal file
|
After Width: | Height: | Size: 3.7 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/py.png
Normal file
|
After Width: | Height: | Size: 2.4 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/qt.png
Normal file
|
After Width: | Height: | Size: 3.6 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/ra.png
Normal file
|
After Width: | Height: | Size: 3.1 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/ram.png
Normal file
|
After Width: | Height: | Size: 3.2 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/rar.png
Normal file
|
After Width: | Height: | Size: 3.1 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/rm.png
Normal file
|
After Width: | Height: | Size: 3.1 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/rpm.png
Normal file
|
After Width: | Height: | Size: 3.2 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/rtf.png
Normal file
|
After Width: | Height: | Size: 2.3 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/rv.png
Normal file
|
After Width: | Height: | Size: 3.1 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/skp.png
Normal file
|
After Width: | Height: | Size: 3.1 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/spx.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/sql.png
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/sty.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/tar.png
Normal file
|
After Width: | Height: | Size: 2.7 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/tex.png
Normal file
|
After Width: | Height: | Size: 2.9 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/tgz.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/tiff.png
Normal file
|
After Width: | Height: | Size: 3.1 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/ttf.png
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/txt.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/vob.png
Normal file
|
After Width: | Height: | Size: 3.1 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/wav.png
Normal file
|
After Width: | Height: | Size: 3.1 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/wmv.png
Normal file
|
After Width: | Height: | Size: 3.1 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/xls.png
Normal file
|
After Width: | Height: | Size: 4.3 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/xlsx.png
Normal file
|
After Width: | Height: | Size: 4.5 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/xml.png
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/xpi.png
Normal file
|
After Width: | Height: | Size: 4.2 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/fileicons/zip.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/icons/archive.png
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/icons/audio.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/icons/bin.png
Normal file
|
After Width: | Height: | Size: 858 B |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/icons/dir.png
Normal file
|
After Width: | Height: | Size: 850 B |
BIN
debs/solarfm-0-0-1-x64/usr/share/solarfm/icons/doc.png
Normal file
|
After Width: | Height: | Size: 702 B |