Initial commit
|
@ -0,0 +1,131 @@
|
||||||
|
database.db
|
||||||
|
|
||||||
|
# Byte-compiled / optimized / DLL files
|
||||||
|
__pycache__/
|
||||||
|
*.py[cod]
|
||||||
|
*$py.class
|
||||||
|
|
||||||
|
# C extensions
|
||||||
|
*.so
|
||||||
|
|
||||||
|
# Distribution / packaging
|
||||||
|
.Python
|
||||||
|
build/
|
||||||
|
develop-eggs/
|
||||||
|
dist/
|
||||||
|
downloads/
|
||||||
|
eggs/
|
||||||
|
.eggs/
|
||||||
|
lib/
|
||||||
|
lib64/
|
||||||
|
parts/
|
||||||
|
sdist/
|
||||||
|
var/
|
||||||
|
wheels/
|
||||||
|
pip-wheel-metadata/
|
||||||
|
share/python-wheels/
|
||||||
|
*.egg-info/
|
||||||
|
.installed.cfg
|
||||||
|
*.egg
|
||||||
|
MANIFEST
|
||||||
|
|
||||||
|
# PyInstaller
|
||||||
|
# Usually these files are written by a python script from a template
|
||||||
|
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
||||||
|
*.manifest
|
||||||
|
*.spec
|
||||||
|
|
||||||
|
# Installer logs
|
||||||
|
pip-log.txt
|
||||||
|
pip-delete-this-directory.txt
|
||||||
|
|
||||||
|
# Unit test / coverage reports
|
||||||
|
htmlcov/
|
||||||
|
.tox/
|
||||||
|
.nox/
|
||||||
|
.coverage
|
||||||
|
.coverage.*
|
||||||
|
.cache
|
||||||
|
nosetests.xml
|
||||||
|
coverage.xml
|
||||||
|
*.cover
|
||||||
|
*.py,cover
|
||||||
|
.hypothesis/
|
||||||
|
.pytest_cache/
|
||||||
|
|
||||||
|
# Translations
|
||||||
|
*.mo
|
||||||
|
*.pot
|
||||||
|
|
||||||
|
# Django stuff:
|
||||||
|
*.log
|
||||||
|
local_settings.py
|
||||||
|
db.sqlite3
|
||||||
|
db.sqlite3-journal
|
||||||
|
|
||||||
|
# Flask stuff:
|
||||||
|
instance/
|
||||||
|
.webassets-cache
|
||||||
|
|
||||||
|
# Scrapy stuff:
|
||||||
|
.scrapy
|
||||||
|
|
||||||
|
# Sphinx documentation
|
||||||
|
docs/_build/
|
||||||
|
|
||||||
|
# PyBuilder
|
||||||
|
target/
|
||||||
|
|
||||||
|
# Jupyter Notebook
|
||||||
|
.ipynb_checkpoints
|
||||||
|
|
||||||
|
# IPython
|
||||||
|
profile_default/
|
||||||
|
ipython_config.py
|
||||||
|
|
||||||
|
# pyenv
|
||||||
|
.python-version
|
||||||
|
|
||||||
|
# pipenv
|
||||||
|
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
||||||
|
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
||||||
|
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
||||||
|
# install all needed dependencies.
|
||||||
|
#Pipfile.lock
|
||||||
|
|
||||||
|
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
|
||||||
|
__pypackages__/
|
||||||
|
|
||||||
|
# Celery stuff
|
||||||
|
celerybeat-schedule
|
||||||
|
celerybeat.pid
|
||||||
|
|
||||||
|
# SageMath parsed files
|
||||||
|
*.sage.py
|
||||||
|
|
||||||
|
# Environments
|
||||||
|
.env
|
||||||
|
.venv
|
||||||
|
env/
|
||||||
|
venv/
|
||||||
|
ENV/
|
||||||
|
env.bak/
|
||||||
|
venv.bak/
|
||||||
|
|
||||||
|
# Spyder project settings
|
||||||
|
.spyderproject
|
||||||
|
.spyproject
|
||||||
|
|
||||||
|
# Rope project settings
|
||||||
|
.ropeproject
|
||||||
|
|
||||||
|
# mkdocs documentation
|
||||||
|
/site
|
||||||
|
|
||||||
|
# mypy
|
||||||
|
.mypy_cache/
|
||||||
|
.dmypy.json
|
||||||
|
dmypy.json
|
||||||
|
|
||||||
|
# Pyre type checker
|
||||||
|
.pyre/
|
|
@ -0,0 +1,339 @@
|
||||||
|
GNU GENERAL PUBLIC LICENSE
|
||||||
|
Version 2, June 1991
|
||||||
|
|
||||||
|
Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
|
||||||
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
Everyone is permitted to copy and distribute verbatim copies
|
||||||
|
of this license document, but changing it is not allowed.
|
||||||
|
|
||||||
|
Preamble
|
||||||
|
|
||||||
|
The licenses for most software are designed to take away your
|
||||||
|
freedom to share and change it. By contrast, the GNU General Public
|
||||||
|
License is intended to guarantee your freedom to share and change free
|
||||||
|
software--to make sure the software is free for all its users. This
|
||||||
|
General Public License applies to most of the Free Software
|
||||||
|
Foundation's software and to any other program whose authors commit to
|
||||||
|
using it. (Some other Free Software Foundation software is covered by
|
||||||
|
the GNU Lesser General Public License instead.) You can apply it to
|
||||||
|
your programs, too.
|
||||||
|
|
||||||
|
When we speak of free software, we are referring to freedom, not
|
||||||
|
price. Our General Public Licenses are designed to make sure that you
|
||||||
|
have the freedom to distribute copies of free software (and charge for
|
||||||
|
this service if you wish), that you receive source code or can get it
|
||||||
|
if you want it, that you can change the software or use pieces of it
|
||||||
|
in new free programs; and that you know you can do these things.
|
||||||
|
|
||||||
|
To protect your rights, we need to make restrictions that forbid
|
||||||
|
anyone to deny you these rights or to ask you to surrender the rights.
|
||||||
|
These restrictions translate to certain responsibilities for you if you
|
||||||
|
distribute copies of the software, or if you modify it.
|
||||||
|
|
||||||
|
For example, if you distribute copies of such a program, whether
|
||||||
|
gratis or for a fee, you must give the recipients all the rights that
|
||||||
|
you have. You must make sure that they, too, receive or can get the
|
||||||
|
source code. And you must show them these terms so they know their
|
||||||
|
rights.
|
||||||
|
|
||||||
|
We protect your rights with two steps: (1) copyright the software, and
|
||||||
|
(2) offer you this license which gives you legal permission to copy,
|
||||||
|
distribute and/or modify the software.
|
||||||
|
|
||||||
|
Also, for each author's protection and ours, we want to make certain
|
||||||
|
that everyone understands that there is no warranty for this free
|
||||||
|
software. If the software is modified by someone else and passed on, we
|
||||||
|
want its recipients to know that what they have is not the original, so
|
||||||
|
that any problems introduced by others will not reflect on the original
|
||||||
|
authors' reputations.
|
||||||
|
|
||||||
|
Finally, any free program is threatened constantly by software
|
||||||
|
patents. We wish to avoid the danger that redistributors of a free
|
||||||
|
program will individually obtain patent licenses, in effect making the
|
||||||
|
program proprietary. To prevent this, we have made it clear that any
|
||||||
|
patent must be licensed for everyone's free use or not licensed at all.
|
||||||
|
|
||||||
|
The precise terms and conditions for copying, distribution and
|
||||||
|
modification follow.
|
||||||
|
|
||||||
|
GNU GENERAL PUBLIC LICENSE
|
||||||
|
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||||
|
|
||||||
|
0. This License applies to any program or other work which contains
|
||||||
|
a notice placed by the copyright holder saying it may be distributed
|
||||||
|
under the terms of this General Public License. The "Program", below,
|
||||||
|
refers to any such program or work, and a "work based on the Program"
|
||||||
|
means either the Program or any derivative work under copyright law:
|
||||||
|
that is to say, a work containing the Program or a portion of it,
|
||||||
|
either verbatim or with modifications and/or translated into another
|
||||||
|
language. (Hereinafter, translation is included without limitation in
|
||||||
|
the term "modification".) Each licensee is addressed as "you".
|
||||||
|
|
||||||
|
Activities other than copying, distribution and modification are not
|
||||||
|
covered by this License; they are outside its scope. The act of
|
||||||
|
running the Program is not restricted, and the output from the Program
|
||||||
|
is covered only if its contents constitute a work based on the
|
||||||
|
Program (independent of having been made by running the Program).
|
||||||
|
Whether that is true depends on what the Program does.
|
||||||
|
|
||||||
|
1. You may copy and distribute verbatim copies of the Program's
|
||||||
|
source code as you receive it, in any medium, provided that you
|
||||||
|
conspicuously and appropriately publish on each copy an appropriate
|
||||||
|
copyright notice and disclaimer of warranty; keep intact all the
|
||||||
|
notices that refer to this License and to the absence of any warranty;
|
||||||
|
and give any other recipients of the Program a copy of this License
|
||||||
|
along with the Program.
|
||||||
|
|
||||||
|
You may charge a fee for the physical act of transferring a copy, and
|
||||||
|
you may at your option offer warranty protection in exchange for a fee.
|
||||||
|
|
||||||
|
2. You may modify your copy or copies of the Program or any portion
|
||||||
|
of it, thus forming a work based on the Program, and copy and
|
||||||
|
distribute such modifications or work under the terms of Section 1
|
||||||
|
above, provided that you also meet all of these conditions:
|
||||||
|
|
||||||
|
a) You must cause the modified files to carry prominent notices
|
||||||
|
stating that you changed the files and the date of any change.
|
||||||
|
|
||||||
|
b) You must cause any work that you distribute or publish, that in
|
||||||
|
whole or in part contains or is derived from the Program or any
|
||||||
|
part thereof, to be licensed as a whole at no charge to all third
|
||||||
|
parties under the terms of this License.
|
||||||
|
|
||||||
|
c) If the modified program normally reads commands interactively
|
||||||
|
when run, you must cause it, when started running for such
|
||||||
|
interactive use in the most ordinary way, to print or display an
|
||||||
|
announcement including an appropriate copyright notice and a
|
||||||
|
notice that there is no warranty (or else, saying that you provide
|
||||||
|
a warranty) and that users may redistribute the program under
|
||||||
|
these conditions, and telling the user how to view a copy of this
|
||||||
|
License. (Exception: if the Program itself is interactive but
|
||||||
|
does not normally print such an announcement, your work based on
|
||||||
|
the Program is not required to print an announcement.)
|
||||||
|
|
||||||
|
These requirements apply to the modified work as a whole. If
|
||||||
|
identifiable sections of that work are not derived from the Program,
|
||||||
|
and can be reasonably considered independent and separate works in
|
||||||
|
themselves, then this License, and its terms, do not apply to those
|
||||||
|
sections when you distribute them as separate works. But when you
|
||||||
|
distribute the same sections as part of a whole which is a work based
|
||||||
|
on the Program, the distribution of the whole must be on the terms of
|
||||||
|
this License, whose permissions for other licensees extend to the
|
||||||
|
entire whole, and thus to each and every part regardless of who wrote it.
|
||||||
|
|
||||||
|
Thus, it is not the intent of this section to claim rights or contest
|
||||||
|
your rights to work written entirely by you; rather, the intent is to
|
||||||
|
exercise the right to control the distribution of derivative or
|
||||||
|
collective works based on the Program.
|
||||||
|
|
||||||
|
In addition, mere aggregation of another work not based on the Program
|
||||||
|
with the Program (or with a work based on the Program) on a volume of
|
||||||
|
a storage or distribution medium does not bring the other work under
|
||||||
|
the scope of this License.
|
||||||
|
|
||||||
|
3. You may copy and distribute the Program (or a work based on it,
|
||||||
|
under Section 2) in object code or executable form under the terms of
|
||||||
|
Sections 1 and 2 above provided that you also do one of the following:
|
||||||
|
|
||||||
|
a) Accompany it with the complete corresponding machine-readable
|
||||||
|
source code, which must be distributed under the terms of Sections
|
||||||
|
1 and 2 above on a medium customarily used for software interchange; or,
|
||||||
|
|
||||||
|
b) Accompany it with a written offer, valid for at least three
|
||||||
|
years, to give any third party, for a charge no more than your
|
||||||
|
cost of physically performing source distribution, a complete
|
||||||
|
machine-readable copy of the corresponding source code, to be
|
||||||
|
distributed under the terms of Sections 1 and 2 above on a medium
|
||||||
|
customarily used for software interchange; or,
|
||||||
|
|
||||||
|
c) Accompany it with the information you received as to the offer
|
||||||
|
to distribute corresponding source code. (This alternative is
|
||||||
|
allowed only for noncommercial distribution and only if you
|
||||||
|
received the program in object code or executable form with such
|
||||||
|
an offer, in accord with Subsection b above.)
|
||||||
|
|
||||||
|
The source code for a work means the preferred form of the work for
|
||||||
|
making modifications to it. For an executable work, complete source
|
||||||
|
code means all the source code for all modules it contains, plus any
|
||||||
|
associated interface definition files, plus the scripts used to
|
||||||
|
control compilation and installation of the executable. However, as a
|
||||||
|
special exception, the source code distributed need not include
|
||||||
|
anything that is normally distributed (in either source or binary
|
||||||
|
form) with the major components (compiler, kernel, and so on) of the
|
||||||
|
operating system on which the executable runs, unless that component
|
||||||
|
itself accompanies the executable.
|
||||||
|
|
||||||
|
If distribution of executable or object code is made by offering
|
||||||
|
access to copy from a designated place, then offering equivalent
|
||||||
|
access to copy the source code from the same place counts as
|
||||||
|
distribution of the source code, even though third parties are not
|
||||||
|
compelled to copy the source along with the object code.
|
||||||
|
|
||||||
|
4. You may not copy, modify, sublicense, or distribute the Program
|
||||||
|
except as expressly provided under this License. Any attempt
|
||||||
|
otherwise to copy, modify, sublicense or distribute the Program is
|
||||||
|
void, and will automatically terminate your rights under this License.
|
||||||
|
However, parties who have received copies, or rights, from you under
|
||||||
|
this License will not have their licenses terminated so long as such
|
||||||
|
parties remain in full compliance.
|
||||||
|
|
||||||
|
5. You are not required to accept this License, since you have not
|
||||||
|
signed it. However, nothing else grants you permission to modify or
|
||||||
|
distribute the Program or its derivative works. These actions are
|
||||||
|
prohibited by law if you do not accept this License. Therefore, by
|
||||||
|
modifying or distributing the Program (or any work based on the
|
||||||
|
Program), you indicate your acceptance of this License to do so, and
|
||||||
|
all its terms and conditions for copying, distributing or modifying
|
||||||
|
the Program or works based on it.
|
||||||
|
|
||||||
|
6. Each time you redistribute the Program (or any work based on the
|
||||||
|
Program), the recipient automatically receives a license from the
|
||||||
|
original licensor to copy, distribute or modify the Program subject to
|
||||||
|
these terms and conditions. You may not impose any further
|
||||||
|
restrictions on the recipients' exercise of the rights granted herein.
|
||||||
|
You are not responsible for enforcing compliance by third parties to
|
||||||
|
this License.
|
||||||
|
|
||||||
|
7. If, as a consequence of a court judgment or allegation of patent
|
||||||
|
infringement or for any other reason (not limited to patent issues),
|
||||||
|
conditions are imposed on you (whether by court order, agreement or
|
||||||
|
otherwise) that contradict the conditions of this License, they do not
|
||||||
|
excuse you from the conditions of this License. If you cannot
|
||||||
|
distribute so as to satisfy simultaneously your obligations under this
|
||||||
|
License and any other pertinent obligations, then as a consequence you
|
||||||
|
may not distribute the Program at all. For example, if a patent
|
||||||
|
license would not permit royalty-free redistribution of the Program by
|
||||||
|
all those who receive copies directly or indirectly through you, then
|
||||||
|
the only way you could satisfy both it and this License would be to
|
||||||
|
refrain entirely from distribution of the Program.
|
||||||
|
|
||||||
|
If any portion of this section is held invalid or unenforceable under
|
||||||
|
any particular circumstance, the balance of the section is intended to
|
||||||
|
apply and the section as a whole is intended to apply in other
|
||||||
|
circumstances.
|
||||||
|
|
||||||
|
It is not the purpose of this section to induce you to infringe any
|
||||||
|
patents or other property right claims or to contest validity of any
|
||||||
|
such claims; this section has the sole purpose of protecting the
|
||||||
|
integrity of the free software distribution system, which is
|
||||||
|
implemented by public license practices. Many people have made
|
||||||
|
generous contributions to the wide range of software distributed
|
||||||
|
through that system in reliance on consistent application of that
|
||||||
|
system; it is up to the author/donor to decide if he or she is willing
|
||||||
|
to distribute software through any other system and a licensee cannot
|
||||||
|
impose that choice.
|
||||||
|
|
||||||
|
This section is intended to make thoroughly clear what is believed to
|
||||||
|
be a consequence of the rest of this License.
|
||||||
|
|
||||||
|
8. If the distribution and/or use of the Program is restricted in
|
||||||
|
certain countries either by patents or by copyrighted interfaces, the
|
||||||
|
original copyright holder who places the Program under this License
|
||||||
|
may add an explicit geographical distribution limitation excluding
|
||||||
|
those countries, so that distribution is permitted only in or among
|
||||||
|
countries not thus excluded. In such case, this License incorporates
|
||||||
|
the limitation as if written in the body of this License.
|
||||||
|
|
||||||
|
9. The Free Software Foundation may publish revised and/or new versions
|
||||||
|
of the General Public License from time to time. Such new versions will
|
||||||
|
be similar in spirit to the present version, but may differ in detail to
|
||||||
|
address new problems or concerns.
|
||||||
|
|
||||||
|
Each version is given a distinguishing version number. If the Program
|
||||||
|
specifies a version number of this License which applies to it and "any
|
||||||
|
later version", you have the option of following the terms and conditions
|
||||||
|
either of that version or of any later version published by the Free
|
||||||
|
Software Foundation. If the Program does not specify a version number of
|
||||||
|
this License, you may choose any version ever published by the Free Software
|
||||||
|
Foundation.
|
||||||
|
|
||||||
|
10. If you wish to incorporate parts of the Program into other free
|
||||||
|
programs whose distribution conditions are different, write to the author
|
||||||
|
to ask for permission. For software which is copyrighted by the Free
|
||||||
|
Software Foundation, write to the Free Software Foundation; we sometimes
|
||||||
|
make exceptions for this. Our decision will be guided by the two goals
|
||||||
|
of preserving the free status of all derivatives of our free software and
|
||||||
|
of promoting the sharing and reuse of software generally.
|
||||||
|
|
||||||
|
NO WARRANTY
|
||||||
|
|
||||||
|
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
||||||
|
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
||||||
|
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
||||||
|
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
||||||
|
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||||
|
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
||||||
|
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
||||||
|
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
||||||
|
REPAIR OR CORRECTION.
|
||||||
|
|
||||||
|
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||||
|
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
||||||
|
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
||||||
|
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
||||||
|
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
||||||
|
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
||||||
|
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
||||||
|
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
||||||
|
POSSIBILITY OF SUCH DAMAGES.
|
||||||
|
|
||||||
|
END OF TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
How to Apply These Terms to Your New Programs
|
||||||
|
|
||||||
|
If you develop a new program, and you want it to be of the greatest
|
||||||
|
possible use to the public, the best way to achieve this is to make it
|
||||||
|
free software which everyone can redistribute and change under these terms.
|
||||||
|
|
||||||
|
To do so, attach the following notices to the program. It is safest
|
||||||
|
to attach them to the start of each source file to most effectively
|
||||||
|
convey the exclusion of warranty; and each file should have at least
|
||||||
|
the "copyright" line and a pointer to where the full notice is found.
|
||||||
|
|
||||||
|
<one line to give the program's name and a brief idea of what it does.>
|
||||||
|
Copyright (C) <year> <name of author>
|
||||||
|
|
||||||
|
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 Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||||
|
|
||||||
|
Also add information on how to contact you by electronic and paper mail.
|
||||||
|
|
||||||
|
If the program is interactive, make it output a short notice like this
|
||||||
|
when it starts in an interactive mode:
|
||||||
|
|
||||||
|
Gnomovision version 69, Copyright (C) year name of author
|
||||||
|
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||||
|
This is free software, and you are welcome to redistribute it
|
||||||
|
under certain conditions; type `show c' for details.
|
||||||
|
|
||||||
|
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||||
|
parts of the General Public License. Of course, the commands you use may
|
||||||
|
be called something other than `show w' and `show c'; they could even be
|
||||||
|
mouse-clicks or menu items--whatever suits your program.
|
||||||
|
|
||||||
|
You should also get your employer (if you work as a programmer) or your
|
||||||
|
school, if any, to sign a "copyright disclaimer" for the program, if
|
||||||
|
necessary. Here is a sample; alter the names:
|
||||||
|
|
||||||
|
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
|
||||||
|
`Gnomovision' (which makes passes at compilers) written by James Hacker.
|
||||||
|
|
||||||
|
<signature of Ty Coon>, 1 April 1989
|
||||||
|
Ty Coon, President of Vice
|
||||||
|
|
||||||
|
This General Public License does not permit incorporating your program into
|
||||||
|
proprietary programs. If your program is a subroutine library, you may
|
||||||
|
consider it more useful to permit linking proprietary applications with the
|
||||||
|
library. If this is what you want to do, use the GNU Lesser General
|
||||||
|
Public License instead of this License.
|
|
@ -0,0 +1,23 @@
|
||||||
|
# Python-With-Gtk-Template
|
||||||
|
A template project for Python with Gtk applications.
|
||||||
|
|
||||||
|
### Requirements
|
||||||
|
* PyGObject (Gtk introspection library)
|
||||||
|
* pyxdg (Desktop ".desktop" file parser)
|
||||||
|
* setproctitle (Define process title to search and kill more easily)
|
||||||
|
* sqlmodel (SQL databases and is powered by Pydantic and SQLAlchemy)
|
||||||
|
|
||||||
|
### Note
|
||||||
|
* Move respetive sub folder content under user_config to the same places in Linux. Though, user/share/<app name> can go to ~/.config folder if prefered.
|
||||||
|
* In additiion, place the plugins folder in the same app folder you moved to /usr/share/<app name> or ~/.config/<app name> .
|
||||||
|
There are a "\<change_me\>" strings and files that need to be set according to your app's name located at:
|
||||||
|
* \_\_builtins\_\_.py
|
||||||
|
* user_config/bin/app_name
|
||||||
|
* user_config/usr/share/app_name
|
||||||
|
* user_config/usr/share/app_name/icons/app_name.png
|
||||||
|
* user_config/usr/share/app_name/icons/app_name-64x64.png
|
||||||
|
* user_config/usr/share/applications/app_name.desktop
|
||||||
|
|
||||||
|
|
||||||
|
For the user_config, after changing names and files, copy all content to their respective destinations.
|
||||||
|
The logic follows Debian Dpkg packaging and its placement logic.
|
|
@ -0,0 +1,2 @@
|
||||||
|
### Note
|
||||||
|
Copy the example and rename it to your desired name. The Main class and passed in arguments are required. You don't necessarily need to use the passed in socket_id or event_system.
|
|
@ -0,0 +1,3 @@
|
||||||
|
"""
|
||||||
|
Pligin Module
|
||||||
|
"""
|
|
@ -0,0 +1,3 @@
|
||||||
|
"""
|
||||||
|
Pligin Package
|
||||||
|
"""
|
|
@ -0,0 +1,13 @@
|
||||||
|
{
|
||||||
|
"manifest": {
|
||||||
|
"name": "Example Plugin",
|
||||||
|
"author": "John Doe",
|
||||||
|
"version": "0.0.1",
|
||||||
|
"support": "",
|
||||||
|
"requests": {
|
||||||
|
"ui_target": "plugin_control_list",
|
||||||
|
"pass_events": "true",
|
||||||
|
"bind_keys": ["Example Plugin||send_message:<Control>f"]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,51 @@
|
||||||
|
# Python imports
|
||||||
|
import os
|
||||||
|
import threading
|
||||||
|
import subprocess
|
||||||
|
import time
|
||||||
|
|
||||||
|
# Lib imports
|
||||||
|
import gi
|
||||||
|
gi.require_version('Gtk', '3.0')
|
||||||
|
from gi.repository import Gtk
|
||||||
|
|
||||||
|
# Application imports
|
||||||
|
from plugins.plugin_base import PluginBase
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# NOTE: Threads WILL NOT die with parent's destruction.
|
||||||
|
def threaded(fn):
|
||||||
|
def wrapper(*args, **kwargs):
|
||||||
|
threading.Thread(target=fn, args=args, kwargs=kwargs, daemon=False).start()
|
||||||
|
return wrapper
|
||||||
|
|
||||||
|
# NOTE: Threads WILL die with parent's destruction.
|
||||||
|
def daemon_threaded(fn):
|
||||||
|
def wrapper(*args, **kwargs):
|
||||||
|
threading.Thread(target=fn, args=args, kwargs=kwargs, daemon=True).start()
|
||||||
|
return wrapper
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class Plugin(PluginBase):
|
||||||
|
def __init__(self):
|
||||||
|
super().__init__()
|
||||||
|
|
||||||
|
self.name = "Example Plugin" # NOTE: Need to remove after establishing private bidirectional 1-1 message bus
|
||||||
|
# where self.name should not be needed for message comms
|
||||||
|
|
||||||
|
|
||||||
|
def generate_reference_ui_element(self):
|
||||||
|
button = Gtk.Button(label=self.name)
|
||||||
|
button.connect("button-release-event", self.send_message)
|
||||||
|
return button
|
||||||
|
|
||||||
|
def run(self):
|
||||||
|
...
|
||||||
|
|
||||||
|
def send_message(self, widget=None, eve=None):
|
||||||
|
message = "Hello, World!"
|
||||||
|
event_system.emit("display_message", ("warning", message, None))
|
|
@ -0,0 +1,4 @@
|
||||||
|
PyGObject
|
||||||
|
pyxdg
|
||||||
|
setproctitle
|
||||||
|
sqlmodel
|
|
@ -0,0 +1,65 @@
|
||||||
|
# Python imports
|
||||||
|
import builtins
|
||||||
|
import threading
|
||||||
|
import sys
|
||||||
|
|
||||||
|
# Lib imports
|
||||||
|
|
||||||
|
# Application imports
|
||||||
|
# from libs.db import DB
|
||||||
|
from libs.event_system import EventSystem
|
||||||
|
from libs.endpoint_registry import EndpointRegistry
|
||||||
|
from libs.keybindings import Keybindings
|
||||||
|
from libs.logger import Logger
|
||||||
|
from libs.settings_manager.manager import SettingsManager
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# NOTE: Threads WILL NOT die with parent's destruction.
|
||||||
|
def threaded_wrapper(fn):
|
||||||
|
def wrapper(*args, **kwargs):
|
||||||
|
thread = threading.Thread(target = fn, args = args, kwargs = kwargs, daemon = False)
|
||||||
|
thread.start()
|
||||||
|
return thread
|
||||||
|
return wrapper
|
||||||
|
|
||||||
|
# NOTE: Threads WILL die with parent's destruction.
|
||||||
|
def daemon_threaded_wrapper(fn):
|
||||||
|
def wrapper(*args, **kwargs):
|
||||||
|
thread = threading.Thread(target = fn, args = args, kwargs = kwargs, daemon = True)
|
||||||
|
thread.start()
|
||||||
|
return thread
|
||||||
|
return wrapper
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# NOTE: Just reminding myself we can add to builtins two different ways...
|
||||||
|
# __builtins__.update({"event_system": Builtins()})
|
||||||
|
builtins.app_name = "<change_me>"
|
||||||
|
|
||||||
|
builtins.keybindings = Keybindings()
|
||||||
|
builtins.event_system = EventSystem()
|
||||||
|
builtins.endpoint_registry = EndpointRegistry()
|
||||||
|
builtins.settings_manager = SettingsManager()
|
||||||
|
# builtins.db = DB()
|
||||||
|
|
||||||
|
settings_manager.load_settings()
|
||||||
|
|
||||||
|
builtins.settings = settings_manager.settings
|
||||||
|
builtins.logger = Logger(settings_manager.get_home_config_path(), \
|
||||||
|
_ch_log_lvl=settings.debugging.ch_log_lvl, \
|
||||||
|
_fh_log_lvl=settings.debugging.fh_log_lvl).get_logger()
|
||||||
|
|
||||||
|
builtins.threaded = threaded_wrapper
|
||||||
|
builtins.daemon_threaded = daemon_threaded_wrapper
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
def custom_except_hook(exc_type, exc_value, exc_traceback):
|
||||||
|
if issubclass(exc_type, KeyboardInterrupt):
|
||||||
|
sys.__excepthook__(exc_type, exc_value, exc_traceback)
|
||||||
|
return
|
||||||
|
|
||||||
|
logger.error("Uncaught exception", exc_info=(exc_type, exc_value, exc_traceback))
|
||||||
|
|
||||||
|
sys.excepthook = custom_except_hook
|
|
@ -0,0 +1,3 @@
|
||||||
|
"""
|
||||||
|
Start of package.
|
||||||
|
"""
|
|
@ -0,0 +1,54 @@
|
||||||
|
#!/usr/bin/python3
|
||||||
|
|
||||||
|
# Python imports
|
||||||
|
import argparse
|
||||||
|
import faulthandler
|
||||||
|
import traceback
|
||||||
|
from setproctitle import setproctitle
|
||||||
|
|
||||||
|
import tracemalloc
|
||||||
|
tracemalloc.start()
|
||||||
|
|
||||||
|
# Lib imports
|
||||||
|
|
||||||
|
# Application imports
|
||||||
|
from __builtins__ import *
|
||||||
|
from app import Application
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
def main(args, unknownargs):
|
||||||
|
setproctitle(f'{app_name}')
|
||||||
|
|
||||||
|
if args.debug == "true":
|
||||||
|
settings_manager.set_debug(True)
|
||||||
|
|
||||||
|
if args.trace_debug == "true":
|
||||||
|
settings_manager.set_trace_debug(True)
|
||||||
|
|
||||||
|
settings_manager.do_dirty_start_check()
|
||||||
|
Application(args, unknownargs)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
''' Set process title, get arguments, and create GTK main thread. '''
|
||||||
|
|
||||||
|
parser = argparse.ArgumentParser()
|
||||||
|
# Add long and short arguments
|
||||||
|
parser.add_argument("--debug", "-d", default="false", help="Do extra console messaging.")
|
||||||
|
parser.add_argument("--trace-debug", "-td", default="false", help="Disable saves, ignore IPC lock, do extra console messaging.")
|
||||||
|
parser.add_argument("--no-plugins", "-np", default="false", help="Do not load plugins.")
|
||||||
|
|
||||||
|
parser.add_argument("--new-tab", "-nt", default="false", help="Opens a 'New Tab' if a handler is set for it.")
|
||||||
|
parser.add_argument("--file", "-f", default="default", help="JUST SOME FILE ARG.")
|
||||||
|
|
||||||
|
# Read arguments (If any...)
|
||||||
|
args, unknownargs = parser.parse_known_args()
|
||||||
|
|
||||||
|
try:
|
||||||
|
faulthandler.enable() # For better debug info
|
||||||
|
main(args, unknownargs)
|
||||||
|
except Exception as e:
|
||||||
|
traceback.print_exc()
|
||||||
|
quit()
|
|
@ -0,0 +1,64 @@
|
||||||
|
# Python imports
|
||||||
|
import signal
|
||||||
|
import os
|
||||||
|
|
||||||
|
# Lib imports
|
||||||
|
|
||||||
|
# Application imports
|
||||||
|
from libs.debugging import debug_signal_handler
|
||||||
|
from libs.ipc_server import IPCServer
|
||||||
|
from core.window import Window
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class AppLaunchException(Exception):
|
||||||
|
...
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class Application:
|
||||||
|
""" docstring for Application. """
|
||||||
|
|
||||||
|
def __init__(self, args, unknownargs):
|
||||||
|
super(Application, self).__init__()
|
||||||
|
|
||||||
|
if not settings_manager.is_trace_debug():
|
||||||
|
self.load_ipc(args, unknownargs)
|
||||||
|
|
||||||
|
self.setup_debug_hook()
|
||||||
|
Window(args, unknownargs).main()
|
||||||
|
|
||||||
|
|
||||||
|
def load_ipc(self, args, unknownargs):
|
||||||
|
ipc_server = IPCServer()
|
||||||
|
self.ipc_realization_check(ipc_server)
|
||||||
|
|
||||||
|
if not ipc_server.is_ipc_alive:
|
||||||
|
for arg in unknownargs + [args.new_tab,]:
|
||||||
|
if os.path.isfile(arg):
|
||||||
|
message = f"FILE|{arg}"
|
||||||
|
ipc_server.send_ipc_message(message)
|
||||||
|
|
||||||
|
raise AppLaunchException(f"{app_name} IPC Server Exists: Have sent path(s) to it and closing...")
|
||||||
|
|
||||||
|
def ipc_realization_check(self, ipc_server):
|
||||||
|
try:
|
||||||
|
ipc_server.create_ipc_listener()
|
||||||
|
except Exception:
|
||||||
|
ipc_server.send_test_ipc_message()
|
||||||
|
|
||||||
|
try:
|
||||||
|
ipc_server.create_ipc_listener()
|
||||||
|
except Exception as e:
|
||||||
|
...
|
||||||
|
|
||||||
|
def setup_debug_hook(self):
|
||||||
|
try:
|
||||||
|
# kill -SIGUSR2 <pid> from Linux/Unix or SIGBREAK signal from Windows
|
||||||
|
signal.signal(
|
||||||
|
vars(signal).get("SIGBREAK") or vars(signal).get("SIGUSR1"),
|
||||||
|
debug_signal_handler
|
||||||
|
)
|
||||||
|
except ValueError:
|
||||||
|
# Typically: ValueError: signal only works in main thread
|
||||||
|
...
|
|
@ -0,0 +1,3 @@
|
||||||
|
"""
|
||||||
|
Core Module
|
||||||
|
"""
|
|
@ -0,0 +1,3 @@
|
||||||
|
"""
|
||||||
|
Containers Module
|
||||||
|
"""
|
|
@ -0,0 +1,47 @@
|
||||||
|
# Python imports
|
||||||
|
|
||||||
|
# Lib imports
|
||||||
|
import gi
|
||||||
|
gi.require_version('Gtk', '3.0')
|
||||||
|
from gi.repository import Gtk
|
||||||
|
|
||||||
|
# Application imports
|
||||||
|
from .header_container import HeaderContainer
|
||||||
|
from .body_container import BodyContainer
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class BaseContainer(Gtk.Box):
|
||||||
|
def __init__(self):
|
||||||
|
super(BaseContainer, self).__init__()
|
||||||
|
|
||||||
|
self.ctx = self.get_style_context()
|
||||||
|
|
||||||
|
self._setup_styling()
|
||||||
|
self._setup_signals()
|
||||||
|
self._subscribe_to_events()
|
||||||
|
self._load_widgets()
|
||||||
|
|
||||||
|
self.show_all()
|
||||||
|
|
||||||
|
|
||||||
|
def _setup_styling(self):
|
||||||
|
self.set_orientation(Gtk.Orientation.VERTICAL)
|
||||||
|
self.ctx.add_class("base-container")
|
||||||
|
|
||||||
|
def _setup_signals(self):
|
||||||
|
...
|
||||||
|
|
||||||
|
def _subscribe_to_events(self):
|
||||||
|
event_system.subscribe("update_transparency", self._update_transparency)
|
||||||
|
event_system.subscribe("remove_transparency", self._remove_transparency)
|
||||||
|
|
||||||
|
def _load_widgets(self):
|
||||||
|
self.add(HeaderContainer())
|
||||||
|
self.add(BodyContainer())
|
||||||
|
|
||||||
|
def _update_transparency(self):
|
||||||
|
self.ctx.add_class(f"mw_transparency_{settings.theming.transparency}")
|
||||||
|
|
||||||
|
def _remove_transparency(self):
|
||||||
|
self.ctx.remove_class(f"mw_transparency_{settings.theming.transparency}")
|
|
@ -0,0 +1,44 @@
|
||||||
|
# Python imports
|
||||||
|
|
||||||
|
# Lib imports
|
||||||
|
import gi
|
||||||
|
gi.require_version('Gtk', '3.0')
|
||||||
|
from gi.repository import Gtk
|
||||||
|
|
||||||
|
# Application imports
|
||||||
|
from .left_container import LeftContainer
|
||||||
|
from .center_container import CenterContainer
|
||||||
|
from .right_container import RightContainer
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class BodyContainer(Gtk.Box):
|
||||||
|
def __init__(self):
|
||||||
|
super(BodyContainer, self).__init__()
|
||||||
|
|
||||||
|
self.ctx = self.get_style_context()
|
||||||
|
|
||||||
|
self._setup_styling()
|
||||||
|
self._setup_signals()
|
||||||
|
self._subscribe_to_events()
|
||||||
|
self._load_widgets()
|
||||||
|
|
||||||
|
self.show_all()
|
||||||
|
|
||||||
|
|
||||||
|
def _setup_styling(self):
|
||||||
|
self.set_orientation(Gtk.Orientation.HORIZONTAL)
|
||||||
|
self.ctx.add_class("body-container")
|
||||||
|
self.set_homogeneous(True)
|
||||||
|
|
||||||
|
def _setup_signals(self):
|
||||||
|
...
|
||||||
|
|
||||||
|
def _subscribe_to_events(self):
|
||||||
|
...
|
||||||
|
|
||||||
|
|
||||||
|
def _load_widgets(self):
|
||||||
|
self.add(LeftContainer())
|
||||||
|
self.add(CenterContainer())
|
||||||
|
self.add(RightContainer())
|
|
@ -0,0 +1,48 @@
|
||||||
|
# Python imports
|
||||||
|
|
||||||
|
# Lib imports
|
||||||
|
import gi
|
||||||
|
gi.require_version('Gtk', '3.0')
|
||||||
|
from gi.repository import Gtk
|
||||||
|
|
||||||
|
# Application imports
|
||||||
|
from ..widgets.webkit.webkit_ui import WebkitUI
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class CenterContainer(Gtk.Box):
|
||||||
|
def __init__(self):
|
||||||
|
super(CenterContainer, self).__init__()
|
||||||
|
|
||||||
|
self._builder = settings_manager.get_builder()
|
||||||
|
|
||||||
|
self._setup_styling()
|
||||||
|
self._setup_signals()
|
||||||
|
self._subscribe_to_events()
|
||||||
|
self._load_widgets()
|
||||||
|
|
||||||
|
|
||||||
|
def _setup_styling(self):
|
||||||
|
self.set_orientation(Gtk.Orientation.VERTICAL)
|
||||||
|
ctx = self.get_style_context()
|
||||||
|
ctx.add_class("center-container")
|
||||||
|
|
||||||
|
def _setup_signals(self):
|
||||||
|
...
|
||||||
|
|
||||||
|
def _subscribe_to_events(self):
|
||||||
|
# event_system.subscribe("handle_file_from_ipc", self.handle_file_from_ipc)
|
||||||
|
...
|
||||||
|
|
||||||
|
def _load_widgets(self):
|
||||||
|
glade_box = self._builder.get_object("glade_box")
|
||||||
|
button = Gtk.Button(label = "Click Me!")
|
||||||
|
|
||||||
|
button.connect("clicked", self._hello_world)
|
||||||
|
|
||||||
|
self.add(button)
|
||||||
|
self.add(glade_box)
|
||||||
|
self.add( WebkitUI() )
|
||||||
|
|
||||||
|
def _hello_world(self, widget = None, eve = None):
|
||||||
|
logger.debug("Hello, World!")
|
|
@ -0,0 +1,46 @@
|
||||||
|
# Python imports
|
||||||
|
|
||||||
|
# Lib imports
|
||||||
|
import gi
|
||||||
|
gi.require_version('Gtk', '3.0')
|
||||||
|
from gi.repository import Gtk
|
||||||
|
|
||||||
|
# Application imports
|
||||||
|
from ..widgets.transparency_scale import TransparencyScale
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class HeaderContainer(Gtk.Box):
|
||||||
|
def __init__(self):
|
||||||
|
super(HeaderContainer, self).__init__()
|
||||||
|
|
||||||
|
self.ctx = self.get_style_context()
|
||||||
|
|
||||||
|
self._setup_styling()
|
||||||
|
self._setup_signals()
|
||||||
|
self._subscribe_to_events()
|
||||||
|
self._load_widgets()
|
||||||
|
|
||||||
|
self.show_all()
|
||||||
|
|
||||||
|
|
||||||
|
def _setup_styling(self):
|
||||||
|
self.set_orientation(Gtk.Orientation.HORIZONTAL)
|
||||||
|
self.ctx.add_class("header-container")
|
||||||
|
|
||||||
|
def _setup_signals(self):
|
||||||
|
...
|
||||||
|
|
||||||
|
def _subscribe_to_events(self):
|
||||||
|
...
|
||||||
|
|
||||||
|
|
||||||
|
def _load_widgets(self):
|
||||||
|
button = Gtk.Button(label = "Interactive Debug")
|
||||||
|
button.connect("clicked", self._interactive_debug)
|
||||||
|
|
||||||
|
self.add(TransparencyScale())
|
||||||
|
self.add(button)
|
||||||
|
|
||||||
|
def _interactive_debug(self, widget = None, eve = None):
|
||||||
|
event_system.emit("load_interactive_debug")
|
|
@ -0,0 +1,35 @@
|
||||||
|
# Python imports
|
||||||
|
|
||||||
|
# Lib imports
|
||||||
|
import gi
|
||||||
|
gi.require_version('Gtk', '3.0')
|
||||||
|
from gi.repository import Gtk
|
||||||
|
|
||||||
|
# Application imports
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class LeftContainer(Gtk.Box):
|
||||||
|
def __init__(self):
|
||||||
|
super(LeftContainer, self).__init__()
|
||||||
|
|
||||||
|
self._setup_styling()
|
||||||
|
self._setup_signals()
|
||||||
|
self._subscribe_to_events()
|
||||||
|
self._load_widgets()
|
||||||
|
|
||||||
|
|
||||||
|
def _setup_styling(self):
|
||||||
|
self.set_orientation(Gtk.Orientation.VERTICAL)
|
||||||
|
ctx = self.get_style_context()
|
||||||
|
ctx.add_class("left-container")
|
||||||
|
|
||||||
|
def _setup_signals(self):
|
||||||
|
...
|
||||||
|
|
||||||
|
def _subscribe_to_events(self):
|
||||||
|
# event_system.subscribe("handle_file_from_ipc", self.handle_file_from_ipc)
|
||||||
|
...
|
||||||
|
|
||||||
|
def _load_widgets(self):
|
||||||
|
...
|
|
@ -0,0 +1,35 @@
|
||||||
|
# Python imports
|
||||||
|
|
||||||
|
# Lib imports
|
||||||
|
import gi
|
||||||
|
gi.require_version('Gtk', '3.0')
|
||||||
|
from gi.repository import Gtk
|
||||||
|
|
||||||
|
# Application imports
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class RightContainer(Gtk.Box):
|
||||||
|
def __init__(self):
|
||||||
|
super(RightContainer, self).__init__()
|
||||||
|
|
||||||
|
self._setup_styling()
|
||||||
|
self._setup_signals()
|
||||||
|
self._subscribe_to_events()
|
||||||
|
self._load_widgets()
|
||||||
|
|
||||||
|
|
||||||
|
def _setup_styling(self):
|
||||||
|
self.set_orientation(Gtk.Orientation.VERTICAL)
|
||||||
|
ctx = self.get_style_context()
|
||||||
|
ctx.add_class("right-container")
|
||||||
|
|
||||||
|
def _setup_signals(self):
|
||||||
|
...
|
||||||
|
|
||||||
|
def _subscribe_to_events(self):
|
||||||
|
# event_system.subscribe("handle_file_from_ipc", self.handle_file_from_ipc)
|
||||||
|
...
|
||||||
|
|
||||||
|
def _load_widgets(self):
|
||||||
|
...
|
|
@ -0,0 +1,3 @@
|
||||||
|
"""
|
||||||
|
Controllers Module
|
||||||
|
"""
|
|
@ -0,0 +1,72 @@
|
||||||
|
# Python imports
|
||||||
|
import os
|
||||||
|
|
||||||
|
# Lib imports
|
||||||
|
import gi
|
||||||
|
gi.require_version('Gtk', '3.0')
|
||||||
|
from gi.repository import Gtk
|
||||||
|
|
||||||
|
# Application imports
|
||||||
|
from libs.mixins.ipc_signals_mixin import IPCSignalsMixin
|
||||||
|
from libs.mixins.keyboard_signals_mixin import KeyboardSignalsMixin
|
||||||
|
|
||||||
|
from ..containers.base_container import BaseContainer
|
||||||
|
|
||||||
|
from .base_controller_data import BaseControllerData
|
||||||
|
from .bridge_controller import BridgeController
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class BaseController(IPCSignalsMixin, KeyboardSignalsMixin, BaseControllerData):
|
||||||
|
def __init__(self, args, unknownargs):
|
||||||
|
self.setup_controller_data()
|
||||||
|
|
||||||
|
self._setup_styling()
|
||||||
|
self._setup_signals()
|
||||||
|
self._subscribe_to_events()
|
||||||
|
self._load_controllers()
|
||||||
|
|
||||||
|
if args.no_plugins == "false":
|
||||||
|
self.plugins.launch_plugins()
|
||||||
|
|
||||||
|
for arg in unknownargs + [args.new_tab,]:
|
||||||
|
if os.path.isfile(arg):
|
||||||
|
message = f"FILE|{arg}"
|
||||||
|
event_system.emit("post_file_to_ipc", message)
|
||||||
|
|
||||||
|
if os.path.isdir(arg):
|
||||||
|
message = f"DIR|{arg}"
|
||||||
|
event_system.emit("post_file_to_ipc", message)
|
||||||
|
|
||||||
|
logger.info(f"Made it past {self.__class__} loading...")
|
||||||
|
|
||||||
|
|
||||||
|
def _setup_styling(self):
|
||||||
|
...
|
||||||
|
|
||||||
|
def _setup_signals(self):
|
||||||
|
self.window.connect("focus-out-event", self.unset_keys_and_data)
|
||||||
|
self.window.connect("key-press-event", self.on_global_key_press_controller)
|
||||||
|
self.window.connect("key-release-event", self.on_global_key_release_controller)
|
||||||
|
|
||||||
|
def _subscribe_to_events(self):
|
||||||
|
event_system.subscribe("shutting_down", lambda: print("Shutting down..."))
|
||||||
|
event_system.subscribe("handle_file_from_ipc", self.handle_file_from_ipc)
|
||||||
|
event_system.subscribe("handle_dir_from_ipc", self.handle_dir_from_ipc)
|
||||||
|
event_system.subscribe("tggl_top_main_menubar", self._tggl_top_main_menubar)
|
||||||
|
|
||||||
|
def _load_controllers(self):
|
||||||
|
BridgeController()
|
||||||
|
|
||||||
|
def _tggl_top_main_menubar(self):
|
||||||
|
logger.debug("_tggl_top_main_menubar > stub...")
|
||||||
|
|
||||||
|
def setup_builder_and_container(self):
|
||||||
|
self.builder = Gtk.Builder()
|
||||||
|
self.builder.add_from_file(settings_manager.get_glade_file())
|
||||||
|
self.builder.expose_object("main_window", self.window)
|
||||||
|
|
||||||
|
settings_manager.set_builder(self.builder)
|
||||||
|
self.base_container = BaseContainer()
|
||||||
|
|
||||||
|
settings_manager.register_signals_to_builder([self, self.base_container])
|
|
@ -0,0 +1,83 @@
|
||||||
|
# Python imports
|
||||||
|
import os
|
||||||
|
import subprocess
|
||||||
|
from shutil import which
|
||||||
|
|
||||||
|
# Lib imports
|
||||||
|
|
||||||
|
# Application imports
|
||||||
|
from plugins.plugins_controller import PluginsController
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class BaseControllerData:
|
||||||
|
''' BaseControllerData contains most of the state of the app at ay given time. It also has some support methods. '''
|
||||||
|
|
||||||
|
def setup_controller_data(self) -> None:
|
||||||
|
self.window = settings_manager.get_main_window()
|
||||||
|
self.builder = None
|
||||||
|
self.base_container = None
|
||||||
|
self.was_midified_key = False
|
||||||
|
self.ctrl_down = False
|
||||||
|
self.shift_down = False
|
||||||
|
self.alt_down = False
|
||||||
|
|
||||||
|
self.setup_builder_and_container()
|
||||||
|
self.plugins = PluginsController()
|
||||||
|
|
||||||
|
def get_base_container(self):
|
||||||
|
return self.base_container
|
||||||
|
|
||||||
|
def clear_console(self) -> None:
|
||||||
|
''' Clears the terminal screen. '''
|
||||||
|
os.system('cls' if os.name == 'nt' else 'clear')
|
||||||
|
|
||||||
|
def call_method(self, _method_name: str, data: type) -> type:
|
||||||
|
'''
|
||||||
|
Calls a method from scope of class.
|
||||||
|
|
||||||
|
Parameters:
|
||||||
|
a (obj): self
|
||||||
|
b (str): method name to be called
|
||||||
|
c (*): Data (if any) to be passed to the method.
|
||||||
|
Note: It must be structured according to the given methods requirements.
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
Return data is that which the calling method gives.
|
||||||
|
'''
|
||||||
|
method_name = str(_method_name)
|
||||||
|
method = getattr(self, method_name, lambda data: f"No valid key passed...\nkey={method_name}\nargs={data}")
|
||||||
|
return method(*data) if data else method()
|
||||||
|
|
||||||
|
def has_method(self, obj: type, method: type) -> type:
|
||||||
|
''' Checks if a given method exists. '''
|
||||||
|
return callable(getattr(obj, method, None))
|
||||||
|
|
||||||
|
def clear_children(self, widget: type) -> None:
|
||||||
|
''' Clear children of a gtk widget. '''
|
||||||
|
for child in widget.get_children():
|
||||||
|
widget.remove(child)
|
||||||
|
|
||||||
|
def get_clipboard_data(self, encoding = "utf-8") -> str:
|
||||||
|
if which("xclip"):
|
||||||
|
command = ['xclip','-selection','clipboard']
|
||||||
|
else:
|
||||||
|
logger.info('xclip not found...')
|
||||||
|
return
|
||||||
|
|
||||||
|
proc = subprocess.Popen(['xclip','-selection', 'clipboard', '-o'], stdout = subprocess.PIPE)
|
||||||
|
retcode = proc.wait()
|
||||||
|
data = proc.stdout.read()
|
||||||
|
return data.decode(encoding).strip()
|
||||||
|
|
||||||
|
def set_clipboard_data(self, data: type, encoding = "utf-8") -> None:
|
||||||
|
if which("xclip"):
|
||||||
|
command = ['xclip','-selection','clipboard']
|
||||||
|
else:
|
||||||
|
logger.info('xclip not found...')
|
||||||
|
return
|
||||||
|
|
||||||
|
proc = subprocess.Popen(command, stdin = subprocess.PIPE)
|
||||||
|
proc.stdin.write(data.encode(encoding))
|
||||||
|
proc.stdin.close()
|
||||||
|
retcode = proc.wait()
|
|
@ -0,0 +1,43 @@
|
||||||
|
# Python imports
|
||||||
|
import base64
|
||||||
|
|
||||||
|
# Lib imports
|
||||||
|
|
||||||
|
# Application imports
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class BridgeController:
|
||||||
|
def __init__(self):
|
||||||
|
|
||||||
|
self.opened_files = {}
|
||||||
|
|
||||||
|
self._setup_signals()
|
||||||
|
self._subscribe_to_events()
|
||||||
|
|
||||||
|
|
||||||
|
def _setup_signals(self):
|
||||||
|
...
|
||||||
|
|
||||||
|
def _subscribe_to_events(self):
|
||||||
|
event_system.subscribe("handle_bridge_event", self.handle_bridge_event)
|
||||||
|
|
||||||
|
|
||||||
|
def handle_bridge_event(self, event):
|
||||||
|
match event.topic:
|
||||||
|
case "save":
|
||||||
|
event_system.emit(f"handle_file_event_{event.originator}", (event,))
|
||||||
|
case "close":
|
||||||
|
event_system.emit(f"handle_file_event_{event.originator}", (event,))
|
||||||
|
case "load_buffer":
|
||||||
|
event_system.emit(f"handle_file_event_{event.originator}", (event,))
|
||||||
|
case "load_file":
|
||||||
|
event_system.emit(f"handle_file_event_{event.originator}", (event,))
|
||||||
|
case "alert":
|
||||||
|
content = base64.b64decode( event.content.encode() ).decode("utf-8")
|
||||||
|
logger.info(f"\nMessage Topic: {event.topic}\nMessage Content: {content}")
|
||||||
|
case "error":
|
||||||
|
content = base64.b64decode( event.content.encode() ).decode("utf-8")
|
||||||
|
logger.info(content)
|
||||||
|
case _:
|
||||||
|
...
|
|
@ -0,0 +1,3 @@
|
||||||
|
"""
|
||||||
|
Widgets Module
|
||||||
|
"""
|
|
@ -0,0 +1,48 @@
|
||||||
|
# Python imports
|
||||||
|
|
||||||
|
# Lib imports
|
||||||
|
import gi
|
||||||
|
gi.require_version('Gtk', '3.0')
|
||||||
|
from gi.repository import Gtk
|
||||||
|
|
||||||
|
# Application imports
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class TransparencyScale(Gtk.Scale):
|
||||||
|
def __init__(self):
|
||||||
|
super(TransparencyScale, self).__init__()
|
||||||
|
|
||||||
|
|
||||||
|
self._setup_styling()
|
||||||
|
self._setup_signals()
|
||||||
|
self._subscribe_to_events()
|
||||||
|
self._load_widgets()
|
||||||
|
|
||||||
|
self.show_all()
|
||||||
|
|
||||||
|
|
||||||
|
def _setup_styling(self):
|
||||||
|
self.set_digits(0)
|
||||||
|
self.set_value_pos(Gtk.PositionType.RIGHT)
|
||||||
|
self.add_mark(50.0, Gtk.PositionType.TOP, "50%")
|
||||||
|
self.set_hexpand(True)
|
||||||
|
|
||||||
|
def _setup_signals(self):
|
||||||
|
self.connect("value-changed", self._update_transparency)
|
||||||
|
|
||||||
|
def _subscribe_to_events(self):
|
||||||
|
...
|
||||||
|
|
||||||
|
def _load_widgets(self):
|
||||||
|
adjust = self.get_adjustment()
|
||||||
|
adjust.set_lower(0)
|
||||||
|
adjust.set_upper(99)
|
||||||
|
adjust.set_value(settings.theming.transparency)
|
||||||
|
adjust.set_step_increment(1.0)
|
||||||
|
|
||||||
|
def _update_transparency(self, range):
|
||||||
|
event_system.emit("remove_transparency")
|
||||||
|
tp = int(range.get_value())
|
||||||
|
settings.theming.transparency = tp
|
||||||
|
event_system.emit("update_transparency")
|
|
@ -0,0 +1,3 @@
|
||||||
|
"""
|
||||||
|
WebKit2 UI Module
|
||||||
|
"""
|
|
@ -0,0 +1,108 @@
|
||||||
|
# Python imports
|
||||||
|
import json
|
||||||
|
|
||||||
|
# Lib imports
|
||||||
|
import gi
|
||||||
|
gi.require_version('Gdk', '3.0')
|
||||||
|
gi.require_version('WebKit2', '4.0')
|
||||||
|
from gi.repository import Gdk
|
||||||
|
from gi.repository import WebKit2
|
||||||
|
|
||||||
|
# Application imports
|
||||||
|
from libs.data_types import Event
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class WebkitUI(WebKit2.WebView):
|
||||||
|
def __init__(self):
|
||||||
|
super(WebkitUI, self).__init__()
|
||||||
|
|
||||||
|
# self.get_context().set_sandbox_enabled(False)
|
||||||
|
|
||||||
|
self._load_settings()
|
||||||
|
self._setup_styling()
|
||||||
|
self._subscribe_to_events()
|
||||||
|
self._load_view()
|
||||||
|
self._setup_content_manager()
|
||||||
|
|
||||||
|
self.show_all()
|
||||||
|
|
||||||
|
if settings_manager.is_debug():
|
||||||
|
inspector = self.get_inspector()
|
||||||
|
inspector.show()
|
||||||
|
|
||||||
|
|
||||||
|
def _setup_styling(self):
|
||||||
|
self.set_vexpand(True)
|
||||||
|
self.set_hexpand(True)
|
||||||
|
self.set_background_color( Gdk.RGBA(0, 0, 0, 0.0) )
|
||||||
|
|
||||||
|
def _subscribe_to_events(self):
|
||||||
|
event_system.subscribe(f"ui_message", self.ui_message)
|
||||||
|
|
||||||
|
def _load_settings(self):
|
||||||
|
self.set_settings( WebkitUISettings() )
|
||||||
|
|
||||||
|
def _load_view(self):
|
||||||
|
path = settings_manager.get_context_path()
|
||||||
|
data = None
|
||||||
|
|
||||||
|
with open(f"{path}/index.html", "r") as f:
|
||||||
|
data = f.read()
|
||||||
|
|
||||||
|
self.load_html(content = data, base_uri = f"file://{path}/")
|
||||||
|
|
||||||
|
def _setup_content_manager(self):
|
||||||
|
content_manager = self.get_user_content_manager()
|
||||||
|
|
||||||
|
content_manager.connect("script-message-received", self._process_js_message)
|
||||||
|
content_manager.register_script_message_handler("backend")
|
||||||
|
|
||||||
|
def _process_js_message(self, user_content_manager, js_result):
|
||||||
|
js_value = js_result.get_js_value()
|
||||||
|
message = js_value.to_string()
|
||||||
|
|
||||||
|
try:
|
||||||
|
event = Event( **json.loads(message) )
|
||||||
|
event_system.emit("handle_bridge_event", (event,))
|
||||||
|
except Exception as e:
|
||||||
|
logger.info(e)
|
||||||
|
|
||||||
|
def ui_message(self, mtype, message):
|
||||||
|
command = f"displayMessage('{message}', '{mtype}', '3')"
|
||||||
|
self.run_javascript(command, None, None)
|
||||||
|
|
||||||
|
|
||||||
|
class WebkitUISettings(WebKit2.Settings):
|
||||||
|
def __init__(self):
|
||||||
|
super(WebkitUISettings, self).__init__()
|
||||||
|
|
||||||
|
self._set_default_settings()
|
||||||
|
|
||||||
|
|
||||||
|
# Note: Highly insecure setup but most "app" like setup I could think of.
|
||||||
|
# Audit heavily any scripts/links ran/clicked under this setup!
|
||||||
|
def _set_default_settings(self):
|
||||||
|
# self.set_enable_xss_auditor(True)
|
||||||
|
# self.set_enable_hyperlink_auditing(True)
|
||||||
|
self.set_enable_xss_auditor(False)
|
||||||
|
self.set_enable_hyperlink_auditing(False)
|
||||||
|
self.set_enable_dns_prefetching(False)
|
||||||
|
self.set_allow_file_access_from_file_urls(True)
|
||||||
|
self.set_allow_universal_access_from_file_urls(True)
|
||||||
|
# self.set_enable_java(True)
|
||||||
|
|
||||||
|
self.set_enable_page_cache(False)
|
||||||
|
self.set_enable_offline_web_application_cache(False)
|
||||||
|
self.set_enable_html5_local_storage(False)
|
||||||
|
self.set_enable_html5_database(False)
|
||||||
|
|
||||||
|
self.set_print_backgrounds(False)
|
||||||
|
self.set_enable_tabs_to_links(False)
|
||||||
|
self.set_enable_fullscreen(True)
|
||||||
|
self.set_enable_developer_extras(True)
|
||||||
|
self.set_enable_webrtc(True)
|
||||||
|
self.set_enable_webaudio(True)
|
||||||
|
self.set_enable_accelerated_2d_canvas(True)
|
||||||
|
|
||||||
|
self.set_user_agent(f"Mozilla/5.0 {app_name}")
|
|
@ -0,0 +1,64 @@
|
||||||
|
# Python imports
|
||||||
|
|
||||||
|
# Lib imports
|
||||||
|
import gi
|
||||||
|
gi.require_version('Gdk', '3.0')
|
||||||
|
gi.require_version('WebKit2', '4.0')
|
||||||
|
from gi.repository import Gdk
|
||||||
|
from gi.repository import WebKit2
|
||||||
|
|
||||||
|
# Application imports
|
||||||
|
from libs.settings_manager.other.webkit_ui_settings import WebkitUISettings
|
||||||
|
|
||||||
|
|
||||||
|
class WebkitUI(WebKit2.WebView):
|
||||||
|
def __init__(self):
|
||||||
|
super(WebkitUI, self).__init__()
|
||||||
|
|
||||||
|
self._setup_styling()
|
||||||
|
self._subscribe_to_events()
|
||||||
|
self._load_view()
|
||||||
|
self._setup_content_manager()
|
||||||
|
|
||||||
|
self.show_all()
|
||||||
|
|
||||||
|
|
||||||
|
def _setup_styling(self):
|
||||||
|
self.set_vexpand(True)
|
||||||
|
self.set_hexpand(True)
|
||||||
|
self.set_background_color( Gdk.RGBA(0, 0, 0, 0.0) )
|
||||||
|
|
||||||
|
def _subscribe_to_events(self):
|
||||||
|
event_system.subscribe(f"ui_message", self.ui_message)
|
||||||
|
|
||||||
|
def _load_settings(self):
|
||||||
|
self.set_settings( WebkitUISettings() )
|
||||||
|
|
||||||
|
def _load_view(self):
|
||||||
|
path = settings_manager.get_context_path()
|
||||||
|
data = None
|
||||||
|
|
||||||
|
with open(f"{path}/index.html", "r") as f:
|
||||||
|
data = f.read()
|
||||||
|
|
||||||
|
self.load_html(content = data, base_uri = f"file://{path}/")
|
||||||
|
|
||||||
|
def _setup_content_manager(self):
|
||||||
|
content_manager = self.get_user_content_manager()
|
||||||
|
content_manager.connect("script-message-received", self._process_js_message)
|
||||||
|
content_manager.register_script_message_handler("backend")
|
||||||
|
|
||||||
|
def _process_js_message(self, user_content_manager, js_result):
|
||||||
|
js_value = js_result.get_js_value()
|
||||||
|
message = js_value.to_string()
|
||||||
|
|
||||||
|
try:
|
||||||
|
event = Event( **json.loads(message) )
|
||||||
|
event_system.emit("handle_bridge_event", (event,))
|
||||||
|
except Exception as e:
|
||||||
|
logger.info(e)
|
||||||
|
|
||||||
|
def ui_message(self, message, mtype):
|
||||||
|
command = f"displayMessage('{message}', '{mtype}', '3')"
|
||||||
|
self.run_javascript(command, None, None)
|
||||||
|
|
|
@ -0,0 +1,135 @@
|
||||||
|
# Python imports
|
||||||
|
import signal
|
||||||
|
|
||||||
|
# Lib imports
|
||||||
|
import gi
|
||||||
|
import cairo
|
||||||
|
gi.require_version('Gtk', '3.0')
|
||||||
|
gi.require_version('Gdk', '3.0')
|
||||||
|
from gi.repository import Gtk
|
||||||
|
from gi.repository import Gdk
|
||||||
|
from gi.repository import GLib
|
||||||
|
|
||||||
|
# Application imports
|
||||||
|
from core.controllers.base_controller import BaseController
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class ControllerStartExceptiom(Exception):
|
||||||
|
...
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class Window(Gtk.ApplicationWindow):
|
||||||
|
""" docstring for Window. """
|
||||||
|
|
||||||
|
def __init__(self, args, unknownargs):
|
||||||
|
super(Window, self).__init__()
|
||||||
|
settings_manager.set_main_window(self)
|
||||||
|
|
||||||
|
self._controller = None
|
||||||
|
|
||||||
|
self._setup_styling()
|
||||||
|
self._setup_signals()
|
||||||
|
self._subscribe_to_events()
|
||||||
|
self._load_widgets(args, unknownargs)
|
||||||
|
|
||||||
|
self._set_window_data()
|
||||||
|
self._set_size_constraints()
|
||||||
|
|
||||||
|
self.show()
|
||||||
|
|
||||||
|
|
||||||
|
def _setup_styling(self):
|
||||||
|
self.set_title(f"{app_name}")
|
||||||
|
self.set_icon_from_file( settings_manager.get_window_icon() )
|
||||||
|
self.set_gravity(5) # 5 = CENTER
|
||||||
|
self.set_position(1) # 1 = CENTER, 4 = CENTER_ALWAYS
|
||||||
|
|
||||||
|
ctx = self.get_style_context()
|
||||||
|
ctx.add_class("main-window")
|
||||||
|
ctx.add_class(f"mw_transparency_{settings.theming.transparency}")
|
||||||
|
|
||||||
|
def _setup_signals(self):
|
||||||
|
self.connect("focus-in-event", self._on_focus_in_event)
|
||||||
|
self.connect("focus-out-event", self._on_focus_out_event)
|
||||||
|
|
||||||
|
self.connect("delete-event", self._tear_down)
|
||||||
|
GLib.unix_signal_add(GLib.PRIORITY_DEFAULT, signal.SIGINT, self._tear_down)
|
||||||
|
|
||||||
|
def _subscribe_to_events(self):
|
||||||
|
event_system.subscribe("tear_down", self._tear_down)
|
||||||
|
event_system.subscribe("load_interactive_debug", self._load_interactive_debug)
|
||||||
|
|
||||||
|
def _load_widgets(self, args, unknownargs):
|
||||||
|
if settings_manager.is_debug():
|
||||||
|
self.set_interactive_debugging(True)
|
||||||
|
|
||||||
|
self._controller = BaseController(args, unknownargs)
|
||||||
|
if not self._controller:
|
||||||
|
raise ControllerStartException("BaseController exited and doesn't exist...")
|
||||||
|
|
||||||
|
self.add( self._controller.get_base_container() )
|
||||||
|
|
||||||
|
def _set_size_constraints(self):
|
||||||
|
_window_x = settings.config.main_window_x
|
||||||
|
_window_y = settings.config.main_window_y
|
||||||
|
_min_width = settings.config.main_window_min_width
|
||||||
|
_min_height = settings.config.main_window_min_height
|
||||||
|
_width = settings.config.main_window_width
|
||||||
|
_height = settings.config.main_window_height
|
||||||
|
|
||||||
|
self.move(_window_x, _window_y - 28)
|
||||||
|
self.set_size_request(_min_width, _min_height)
|
||||||
|
self.set_default_size(_width, _height)
|
||||||
|
|
||||||
|
def _set_window_data(self) -> None:
|
||||||
|
screen = self.get_screen()
|
||||||
|
visual = screen.get_rgba_visual()
|
||||||
|
|
||||||
|
if visual and screen.is_composited() and settings.config.make_transparent == 0:
|
||||||
|
self.set_visual(visual)
|
||||||
|
self.set_app_paintable(True)
|
||||||
|
self.connect("draw", self._area_draw)
|
||||||
|
|
||||||
|
# bind css file
|
||||||
|
cssProvider = Gtk.CssProvider()
|
||||||
|
cssProvider.load_from_path( settings_manager.get_css_file() )
|
||||||
|
screen = Gdk.Screen.get_default()
|
||||||
|
styleContext = Gtk.StyleContext()
|
||||||
|
styleContext.add_provider_for_screen(screen, cssProvider, Gtk.STYLE_PROVIDER_PRIORITY_USER)
|
||||||
|
|
||||||
|
def _area_draw(self, widget: Gtk.ApplicationWindow, cr: cairo.Context) -> None:
|
||||||
|
cr.set_source_rgba( *settings_manager.get_paint_bg_color() )
|
||||||
|
cr.set_operator(cairo.OPERATOR_SOURCE)
|
||||||
|
cr.paint()
|
||||||
|
cr.set_operator(cairo.OPERATOR_OVER)
|
||||||
|
|
||||||
|
|
||||||
|
def _on_focus_in_event(self, widget, event):
|
||||||
|
event_system.emit("pause_dnd_signals")
|
||||||
|
|
||||||
|
def _on_focus_out_event(self, widget, event):
|
||||||
|
event_system.emit("listen_dnd_signals")
|
||||||
|
|
||||||
|
def _load_interactive_debug(self):
|
||||||
|
self.set_interactive_debugging(True)
|
||||||
|
|
||||||
|
|
||||||
|
def _tear_down(self, widget = None, eve = None):
|
||||||
|
event_system.emit("shutting_down")
|
||||||
|
|
||||||
|
size = self.get_size()
|
||||||
|
pos = self.get_position()
|
||||||
|
|
||||||
|
settings_manager.set_main_window_width(size.width)
|
||||||
|
settings_manager.set_main_window_height(size.height)
|
||||||
|
settings_manager.set_main_window_x(pos.root_x)
|
||||||
|
settings_manager.set_main_window_y(pos.root_y)
|
||||||
|
settings_manager.save_settings()
|
||||||
|
|
||||||
|
settings_manager.clear_pid()
|
||||||
|
Gtk.main_quit()
|
||||||
|
|
||||||
|
def main(self):
|
||||||
|
Gtk.main()
|
|
@ -0,0 +1,3 @@
|
||||||
|
"""
|
||||||
|
Utils module
|
||||||
|
"""
|
|
@ -0,0 +1,5 @@
|
||||||
|
"""
|
||||||
|
Dasta Class module
|
||||||
|
"""
|
||||||
|
|
||||||
|
from .event import Event
|
|
@ -0,0 +1,14 @@
|
||||||
|
# Python imports
|
||||||
|
from dataclasses import dataclass, field
|
||||||
|
|
||||||
|
# Lib imports
|
||||||
|
|
||||||
|
# Application imports
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@dataclass
|
||||||
|
class Event:
|
||||||
|
topic: str
|
||||||
|
content: str
|
||||||
|
raw_content: str
|
|
@ -0,0 +1,42 @@
|
||||||
|
# Python imports
|
||||||
|
from typing import Optional
|
||||||
|
from os import path
|
||||||
|
|
||||||
|
# Lib imports
|
||||||
|
from sqlmodel import Session, create_engine
|
||||||
|
|
||||||
|
# Application imports
|
||||||
|
from .models import SQLModel, User
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class DB:
|
||||||
|
def __init__(self):
|
||||||
|
super(DB, self).__init__()
|
||||||
|
|
||||||
|
self.engine = None
|
||||||
|
|
||||||
|
self.create_engine()
|
||||||
|
|
||||||
|
|
||||||
|
def create_engine(self):
|
||||||
|
db_path = f"sqlite:///{settings_manager.get_home_config_path()}/database.db"
|
||||||
|
self.engine = create_engine(db_path)
|
||||||
|
|
||||||
|
SQLModel.metadata.create_all(self.engine)
|
||||||
|
|
||||||
|
def _add_entry(self, entry):
|
||||||
|
with Session(self.engine) as session:
|
||||||
|
session.add(entry)
|
||||||
|
session.commit()
|
||||||
|
|
||||||
|
|
||||||
|
def add_user_entry(self, name = None, password = None, email = None):
|
||||||
|
if not name or not password or not email: return
|
||||||
|
|
||||||
|
user = User()
|
||||||
|
user.name = name
|
||||||
|
user.password = password
|
||||||
|
user.email = email
|
||||||
|
|
||||||
|
self._add_entry(user)
|
|
@ -0,0 +1,52 @@
|
||||||
|
# Python imports
|
||||||
|
|
||||||
|
# Lib imports
|
||||||
|
|
||||||
|
# Application imports
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# Break into a Python console upon SIGUSR1 (Linux) or SIGBREAK (Windows:
|
||||||
|
# CTRL+Pause/Break). To be included in all production code, just in case.
|
||||||
|
def debug_signal_handler(signal, frame):
|
||||||
|
del signal
|
||||||
|
del frame
|
||||||
|
|
||||||
|
try:
|
||||||
|
import rpdb2
|
||||||
|
logger.debug("\n\nStarting embedded RPDB2 debugger. Password is 'foobar'\n\n")
|
||||||
|
rpdb2.start_embedded_debugger("foobar", True, True)
|
||||||
|
rpdb2.setbreak(depth=1)
|
||||||
|
return
|
||||||
|
except StandardError:
|
||||||
|
...
|
||||||
|
|
||||||
|
try:
|
||||||
|
from rfoo.utils import rconsole
|
||||||
|
logger.debug("\n\nStarting embedded rconsole debugger...\n\n")
|
||||||
|
rconsole.spawn_server()
|
||||||
|
return
|
||||||
|
except StandardError as ex:
|
||||||
|
...
|
||||||
|
|
||||||
|
try:
|
||||||
|
from pudb import set_trace
|
||||||
|
logger.debug("\n\nStarting PuDB debugger...\n\n")
|
||||||
|
set_trace(paused = True)
|
||||||
|
return
|
||||||
|
except StandardError as ex:
|
||||||
|
...
|
||||||
|
|
||||||
|
try:
|
||||||
|
import pdb
|
||||||
|
logger.debug("\n\nStarting embedded PDB debugger...\n\n")
|
||||||
|
pdb.Pdb(skip=['gi.*']).set_trace()
|
||||||
|
return
|
||||||
|
except StandardError as ex:
|
||||||
|
...
|
||||||
|
|
||||||
|
try:
|
||||||
|
import code
|
||||||
|
code.interact()
|
||||||
|
except StandardError as ex:
|
||||||
|
logger.debug(f"{ex}, returning to normal program flow...")
|
|
@ -0,0 +1,22 @@
|
||||||
|
# Python imports
|
||||||
|
|
||||||
|
# Lib imports
|
||||||
|
|
||||||
|
# Application imports
|
||||||
|
from .singleton import Singleton
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class EndpointRegistry(Singleton):
|
||||||
|
def __init__(self):
|
||||||
|
self._endpoints = {}
|
||||||
|
|
||||||
|
def register(self, rule, **options):
|
||||||
|
def decorator(f):
|
||||||
|
self._endpoints[rule] = f
|
||||||
|
return f
|
||||||
|
|
||||||
|
return decorator
|
||||||
|
|
||||||
|
def get_endpoints(self):
|
||||||
|
return self._endpoints
|
|
@ -0,0 +1,73 @@
|
||||||
|
# Python imports
|
||||||
|
from collections import defaultdict
|
||||||
|
|
||||||
|
# Lib imports
|
||||||
|
|
||||||
|
# Application imports
|
||||||
|
from .singleton import Singleton
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class EventSystem(Singleton):
|
||||||
|
""" Create event system. """
|
||||||
|
|
||||||
|
def __init__(self):
|
||||||
|
self.subscribers = defaultdict(list)
|
||||||
|
self._is_paused = False
|
||||||
|
|
||||||
|
self._subscribe_to_events()
|
||||||
|
|
||||||
|
|
||||||
|
def _subscribe_to_events(self):
|
||||||
|
self.subscribe("pause_event_processing", self._pause_processing_events)
|
||||||
|
self.subscribe("resume_event_processing", self._resume_processing_events)
|
||||||
|
|
||||||
|
def _pause_processing_events(self):
|
||||||
|
self._is_paused = True
|
||||||
|
|
||||||
|
def _resume_processing_events(self):
|
||||||
|
self._is_paused = False
|
||||||
|
|
||||||
|
def subscribe(self, event_type, fn):
|
||||||
|
self.subscribers[event_type].append(fn)
|
||||||
|
|
||||||
|
def unsubscribe(self, event_type, fn):
|
||||||
|
self.subscribers[event_type].remove(fn)
|
||||||
|
|
||||||
|
def unsubscribe_all(self, event_type):
|
||||||
|
self.subscribers.pop(event_type, None)
|
||||||
|
|
||||||
|
def emit(self, event_type, data = None):
|
||||||
|
if self._is_paused and event_type != "resume_event_processing":
|
||||||
|
return
|
||||||
|
|
||||||
|
if event_type in self.subscribers:
|
||||||
|
for fn in self.subscribers[event_type]:
|
||||||
|
if data:
|
||||||
|
if hasattr(data, '__iter__') and not type(data) is str:
|
||||||
|
fn(*data)
|
||||||
|
else:
|
||||||
|
fn(data)
|
||||||
|
else:
|
||||||
|
fn()
|
||||||
|
|
||||||
|
def emit_and_await(self, event_type, data = None):
|
||||||
|
if self._is_paused and event_type != "resume_event_processing":
|
||||||
|
return
|
||||||
|
|
||||||
|
""" NOTE: Should be used when signal has only one listener and vis-a-vis """
|
||||||
|
if event_type in self.subscribers:
|
||||||
|
response = None
|
||||||
|
for fn in self.subscribers[event_type]:
|
||||||
|
if data:
|
||||||
|
if hasattr(data, '__iter__') and not type(data) is str:
|
||||||
|
response = fn(*data)
|
||||||
|
else:
|
||||||
|
response = fn(data)
|
||||||
|
else:
|
||||||
|
response = fn()
|
||||||
|
|
||||||
|
if not response in (None, ''):
|
||||||
|
break
|
||||||
|
|
||||||
|
return response
|
|
@ -0,0 +1,132 @@
|
||||||
|
# Python imports
|
||||||
|
import os
|
||||||
|
import threading
|
||||||
|
import time
|
||||||
|
from multiprocessing.connection import Client
|
||||||
|
from multiprocessing.connection import Listener
|
||||||
|
|
||||||
|
# Lib imports
|
||||||
|
|
||||||
|
# Application imports
|
||||||
|
from .singleton import Singleton
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class IPCServer(Singleton):
|
||||||
|
""" Create a listener so that other {app_name} instances send requests back to existing instance. """
|
||||||
|
def __init__(self, ipc_address: str = '127.0.0.1', conn_type: str = "socket"):
|
||||||
|
self.is_ipc_alive = False
|
||||||
|
self._ipc_port = 4848
|
||||||
|
self._ipc_address = ipc_address
|
||||||
|
self._conn_type = conn_type
|
||||||
|
self._ipc_authkey = b'' + bytes(f'{app_name}-ipc', 'utf-8')
|
||||||
|
self._ipc_timeout = 15.0
|
||||||
|
|
||||||
|
if conn_type == "socket":
|
||||||
|
self._ipc_address = f'/tmp/{app_name}-ipc.sock'
|
||||||
|
elif conn_type == "full_network":
|
||||||
|
self._ipc_address = '0.0.0.0'
|
||||||
|
elif conn_type == "full_network_unsecured":
|
||||||
|
self._ipc_authkey = None
|
||||||
|
self._ipc_address = '0.0.0.0'
|
||||||
|
elif conn_type == "local_network_unsecured":
|
||||||
|
self._ipc_authkey = None
|
||||||
|
|
||||||
|
self._subscribe_to_events()
|
||||||
|
|
||||||
|
def _subscribe_to_events(self):
|
||||||
|
event_system.subscribe("post_file_to_ipc", self.send_ipc_message)
|
||||||
|
|
||||||
|
|
||||||
|
def create_ipc_listener(self) -> None:
|
||||||
|
if self._conn_type == "socket":
|
||||||
|
if os.path.exists(self._ipc_address) and settings_manager.is_dirty_start():
|
||||||
|
os.unlink(self._ipc_address)
|
||||||
|
|
||||||
|
listener = Listener(address=self._ipc_address, family="AF_UNIX", authkey=self._ipc_authkey)
|
||||||
|
elif "unsecured" not in self._conn_type:
|
||||||
|
listener = Listener((self._ipc_address, self._ipc_port), authkey=self._ipc_authkey)
|
||||||
|
else:
|
||||||
|
listener = Listener((self._ipc_address, self._ipc_port))
|
||||||
|
|
||||||
|
|
||||||
|
self.is_ipc_alive = True
|
||||||
|
self._run_ipc_loop(listener)
|
||||||
|
|
||||||
|
@daemon_threaded
|
||||||
|
def _run_ipc_loop(self, listener) -> None:
|
||||||
|
# NOTE: Not thread safe if using with Gtk. Need to import GLib and use idle_add
|
||||||
|
while True:
|
||||||
|
try:
|
||||||
|
conn = listener.accept()
|
||||||
|
start_time = time.perf_counter()
|
||||||
|
self._handle_ipc_message(conn, start_time)
|
||||||
|
except Exception as e:
|
||||||
|
logger.debug( repr(e) )
|
||||||
|
|
||||||
|
listener.close()
|
||||||
|
|
||||||
|
def _handle_ipc_message(self, conn, start_time) -> None:
|
||||||
|
while True:
|
||||||
|
msg = conn.recv()
|
||||||
|
logger.debug(msg)
|
||||||
|
|
||||||
|
if "FILE|" in msg:
|
||||||
|
file = msg.split("FILE|")[1].strip()
|
||||||
|
if file:
|
||||||
|
event_system.emit("handle_file_from_ipc", file)
|
||||||
|
|
||||||
|
if "DIR|" in msg:
|
||||||
|
file = msg.split("DIR|")[1].strip()
|
||||||
|
if file:
|
||||||
|
event_system.emit("handle_dir_from_ipc", file)
|
||||||
|
|
||||||
|
conn.close()
|
||||||
|
break
|
||||||
|
|
||||||
|
|
||||||
|
if msg in ['close connection', 'close server']:
|
||||||
|
conn.close()
|
||||||
|
break
|
||||||
|
|
||||||
|
# NOTE: Not perfect but insures we don't lock up the connection for too long.
|
||||||
|
end_time = time.perf_counter()
|
||||||
|
if (end_time - start_time) > self._ipc_timeout:
|
||||||
|
conn.close()
|
||||||
|
break
|
||||||
|
|
||||||
|
|
||||||
|
def send_ipc_message(self, message: str = "Empty Data...") -> None:
|
||||||
|
try:
|
||||||
|
if self._conn_type == "socket":
|
||||||
|
conn = Client(address=self._ipc_address, family="AF_UNIX", authkey=self._ipc_authkey)
|
||||||
|
elif "unsecured" not in self._conn_type:
|
||||||
|
conn = Client((self._ipc_address, self._ipc_port), authkey=self._ipc_authkey)
|
||||||
|
else:
|
||||||
|
conn = Client((self._ipc_address, self._ipc_port))
|
||||||
|
|
||||||
|
conn.send(message)
|
||||||
|
conn.close()
|
||||||
|
except ConnectionRefusedError as e:
|
||||||
|
logger.error("Connection refused...")
|
||||||
|
except Exception as e:
|
||||||
|
logger.error( repr(e) )
|
||||||
|
|
||||||
|
|
||||||
|
def send_test_ipc_message(self, message: str = "Empty Data...") -> None:
|
||||||
|
try:
|
||||||
|
if self._conn_type == "socket":
|
||||||
|
conn = Client(address=self._ipc_address, family="AF_UNIX", authkey=self._ipc_authkey)
|
||||||
|
elif "unsecured" not in self._conn_type:
|
||||||
|
conn = Client((self._ipc_address, self._ipc_port), authkey=self._ipc_authkey)
|
||||||
|
else:
|
||||||
|
conn = Client((self._ipc_address, self._ipc_port))
|
||||||
|
|
||||||
|
conn.send(message)
|
||||||
|
conn.close()
|
||||||
|
except ConnectionRefusedError as e:
|
||||||
|
if self._conn_type == "socket":
|
||||||
|
logger.error("IPC Socket no longer valid.... Removing.")
|
||||||
|
os.unlink(self._ipc_address)
|
||||||
|
except Exception as e:
|
||||||
|
logger.error( repr(e) )
|
|
@ -0,0 +1,138 @@
|
||||||
|
# Python imports
|
||||||
|
import re
|
||||||
|
|
||||||
|
# Lib imports
|
||||||
|
import gi
|
||||||
|
gi.require_version('Gdk', '3.0')
|
||||||
|
from gi.repository import Gdk
|
||||||
|
|
||||||
|
# Application imports
|
||||||
|
from .singleton import Singleton
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
def logger(log = ""):
|
||||||
|
print(log)
|
||||||
|
|
||||||
|
|
||||||
|
class KeymapError(Exception):
|
||||||
|
""" Custom exception for errors in keybinding configurations """
|
||||||
|
|
||||||
|
MODIFIER = re.compile('<([^<]+)>')
|
||||||
|
class Keybindings(Singleton):
|
||||||
|
""" Class to handle loading and lookup of Terminator keybindings """
|
||||||
|
|
||||||
|
modifiers = {
|
||||||
|
'ctrl': Gdk.ModifierType.CONTROL_MASK,
|
||||||
|
'control': Gdk.ModifierType.CONTROL_MASK,
|
||||||
|
'primary': Gdk.ModifierType.CONTROL_MASK,
|
||||||
|
'shift': Gdk.ModifierType.SHIFT_MASK,
|
||||||
|
'alt': Gdk.ModifierType.MOD1_MASK,
|
||||||
|
'super': Gdk.ModifierType.SUPER_MASK,
|
||||||
|
'hyper': Gdk.ModifierType.HYPER_MASK,
|
||||||
|
'mod2': Gdk.ModifierType.MOD2_MASK
|
||||||
|
}
|
||||||
|
|
||||||
|
empty = {}
|
||||||
|
keys = None
|
||||||
|
_masks = None
|
||||||
|
_lookup = None
|
||||||
|
|
||||||
|
def __init__(self):
|
||||||
|
self.keymap = Gdk.Keymap.get_default()
|
||||||
|
self.configure({})
|
||||||
|
|
||||||
|
def print_keys(self):
|
||||||
|
print(self.keys)
|
||||||
|
|
||||||
|
def append_bindings(self, combos):
|
||||||
|
""" Accept new binding(s) and reload """
|
||||||
|
for item in combos:
|
||||||
|
method, keys = item.split(":")
|
||||||
|
self.keys[method] = keys
|
||||||
|
|
||||||
|
self.reload()
|
||||||
|
|
||||||
|
def configure(self, bindings):
|
||||||
|
""" Accept new bindings and reconfigure with them """
|
||||||
|
self.keys = bindings
|
||||||
|
self.reload()
|
||||||
|
|
||||||
|
def reload(self):
|
||||||
|
""" Parse bindings and mangle into an appropriate form """
|
||||||
|
self._lookup = {}
|
||||||
|
self._masks = 0
|
||||||
|
|
||||||
|
for action, bindings in list(self.keys.items()):
|
||||||
|
if isinstance(bindings, list):
|
||||||
|
bindings = (*bindings,)
|
||||||
|
elif not isinstance(bindings, tuple):
|
||||||
|
bindings = (bindings,)
|
||||||
|
|
||||||
|
|
||||||
|
for binding in bindings:
|
||||||
|
if not binding or binding == "None":
|
||||||
|
continue
|
||||||
|
|
||||||
|
try:
|
||||||
|
keyval, mask = self._parsebinding(binding)
|
||||||
|
# Does much the same, but with worse error handling.
|
||||||
|
# keyval, mask = Gtk.accelerator_parse(binding)
|
||||||
|
except KeymapError as e:
|
||||||
|
logger(f"Keybinding reload failed to parse binding '{binding}': {e}")
|
||||||
|
else:
|
||||||
|
if mask & Gdk.ModifierType.SHIFT_MASK:
|
||||||
|
if keyval == Gdk.KEY_Tab:
|
||||||
|
keyval = Gdk.KEY_ISO_Left_Tab
|
||||||
|
mask &= ~Gdk.ModifierType.SHIFT_MASK
|
||||||
|
else:
|
||||||
|
keyvals = Gdk.keyval_convert_case(keyval)
|
||||||
|
if keyvals[0] != keyvals[1]:
|
||||||
|
keyval = keyvals[1]
|
||||||
|
mask &= ~Gdk.ModifierType.SHIFT_MASK
|
||||||
|
else:
|
||||||
|
keyval = Gdk.keyval_to_lower(keyval)
|
||||||
|
|
||||||
|
self._lookup.setdefault(mask, {})
|
||||||
|
self._lookup[mask][keyval] = action
|
||||||
|
self._masks |= mask
|
||||||
|
|
||||||
|
def _parsebinding(self, binding):
|
||||||
|
""" Parse an individual binding using Gtk's binding function """
|
||||||
|
mask = 0
|
||||||
|
modifiers = re.findall(MODIFIER, binding)
|
||||||
|
|
||||||
|
if modifiers:
|
||||||
|
for modifier in modifiers:
|
||||||
|
mask |= self._lookup_modifier(modifier)
|
||||||
|
|
||||||
|
key = re.sub(MODIFIER, '', binding)
|
||||||
|
if key == '':
|
||||||
|
raise KeymapError('No key found!')
|
||||||
|
|
||||||
|
keyval = Gdk.keyval_from_name(key)
|
||||||
|
|
||||||
|
if keyval == 0:
|
||||||
|
raise KeymapError(f"Key '{key}' is unrecognised...")
|
||||||
|
return (keyval, mask)
|
||||||
|
|
||||||
|
def _lookup_modifier(self, modifier):
|
||||||
|
""" Map modifier names to gtk values """
|
||||||
|
try:
|
||||||
|
return self.modifiers[modifier.lower()]
|
||||||
|
except KeyError:
|
||||||
|
raise KeymapError(f"Unhandled modifier '<{modifier}>'")
|
||||||
|
|
||||||
|
def lookup(self, event):
|
||||||
|
""" Translate a keyboard event into a mapped key """
|
||||||
|
try:
|
||||||
|
_found, keyval, _egp, _lvl, consumed = self.keymap.translate_keyboard_state(
|
||||||
|
event.hardware_keycode,
|
||||||
|
Gdk.ModifierType(event.get_state() & ~Gdk.ModifierType.LOCK_MASK),
|
||||||
|
event.group)
|
||||||
|
except TypeError:
|
||||||
|
logger(f"Keybinding lookup failed to translate keyboard event: {dir(event)}")
|
||||||
|
return None
|
||||||
|
|
||||||
|
mask = (event.get_state() & ~consumed) & self._masks
|
||||||
|
return self._lookup.get(mask, self.empty).get(keyval, None)
|
|
@ -0,0 +1,61 @@
|
||||||
|
# Python imports
|
||||||
|
import os
|
||||||
|
import logging
|
||||||
|
|
||||||
|
# Lib imports
|
||||||
|
|
||||||
|
# Application imports
|
||||||
|
from .singleton import Singleton
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class Logger(Singleton):
|
||||||
|
"""
|
||||||
|
Create a new logging object and return it.
|
||||||
|
:note:
|
||||||
|
NOSET # Don't know the actual log level of this... (defaulting or literally none?)
|
||||||
|
Log Levels (From least to most)
|
||||||
|
Type Value
|
||||||
|
CRITICAL 50
|
||||||
|
ERROR 40
|
||||||
|
WARNING 30
|
||||||
|
INFO 20
|
||||||
|
DEBUG 10
|
||||||
|
:param loggerName: Sets the name of the logger object. (Used in log lines)
|
||||||
|
:param createFile: Whether we create a log file or just pump to terminal
|
||||||
|
|
||||||
|
:return: the logging object we created
|
||||||
|
"""
|
||||||
|
|
||||||
|
def __init__(self, config_path: str, _ch_log_lvl = logging.CRITICAL, _fh_log_lvl = logging.INFO):
|
||||||
|
self._CONFIG_PATH = config_path
|
||||||
|
self.global_lvl = logging.DEBUG # Keep this at highest so that handlers can filter to their desired levels
|
||||||
|
self.ch_log_lvl = _ch_log_lvl # Prety much the only one we ever change
|
||||||
|
self.fh_log_lvl = _fh_log_lvl
|
||||||
|
|
||||||
|
def get_logger(self, loggerName: str = "NO_LOGGER_NAME_PASSED", createFile: bool = True) -> logging.Logger:
|
||||||
|
log = logging.getLogger(loggerName)
|
||||||
|
log.setLevel(self.global_lvl)
|
||||||
|
|
||||||
|
# Set our log output styles
|
||||||
|
fFormatter = logging.Formatter('[%(asctime)s] %(pathname)s:%(lineno)d %(levelname)s - %(message)s', '%m-%d %H:%M:%S')
|
||||||
|
cFormatter = logging.Formatter('%(pathname)s:%(lineno)d] %(levelname)s - %(message)s')
|
||||||
|
|
||||||
|
ch = logging.StreamHandler()
|
||||||
|
ch.setLevel(level=self.ch_log_lvl)
|
||||||
|
ch.setFormatter(cFormatter)
|
||||||
|
log.addHandler(ch)
|
||||||
|
|
||||||
|
if createFile:
|
||||||
|
folder = self._CONFIG_PATH
|
||||||
|
file = f"{folder}/application.log"
|
||||||
|
|
||||||
|
if not os.path.exists(folder):
|
||||||
|
os.mkdir(folder)
|
||||||
|
|
||||||
|
fh = logging.FileHandler(file)
|
||||||
|
fh.setLevel(level=self.fh_log_lvl)
|
||||||
|
fh.setFormatter(fFormatter)
|
||||||
|
log.addHandler(fh)
|
||||||
|
|
||||||
|
return log
|
|
@ -0,0 +1,3 @@
|
||||||
|
"""
|
||||||
|
Utils/Mixins module
|
||||||
|
"""
|
|
@ -0,0 +1,70 @@
|
||||||
|
# Python imports
|
||||||
|
|
||||||
|
# Lib imports
|
||||||
|
import gi
|
||||||
|
gi.require_version('Gtk', '3.0')
|
||||||
|
gi.require_version('Gdk', '3.0')
|
||||||
|
from gi.repository import Gtk
|
||||||
|
from gi.repository import Gdk
|
||||||
|
from gi.repository import Gio
|
||||||
|
|
||||||
|
# Application imports
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class DnDMixin:
|
||||||
|
|
||||||
|
def _setup_dnd(self):
|
||||||
|
flags = Gtk.DestDefaults.ALL
|
||||||
|
|
||||||
|
PLAIN_TEXT_TARGET_TYPE = 70
|
||||||
|
URI_TARGET_TYPE = 80
|
||||||
|
|
||||||
|
text_target = Gtk.TargetEntry.new('text/plain', Gtk.TargetFlags(0), PLAIN_TEXT_TARGET_TYPE)
|
||||||
|
uri_target = Gtk.TargetEntry.new('text/uri-list', Gtk.TargetFlags(0), URI_TARGET_TYPE)
|
||||||
|
|
||||||
|
# targets = [ text_target, uri_target ]
|
||||||
|
targets = [ uri_target ]
|
||||||
|
|
||||||
|
action = Gdk.DragAction.COPY
|
||||||
|
|
||||||
|
# self.drag_dest_set_target_list(targets)
|
||||||
|
self.drag_dest_set(flags, targets, action)
|
||||||
|
|
||||||
|
self._setup_dnd_signals()
|
||||||
|
|
||||||
|
def _setup_dnd_signals(self):
|
||||||
|
# self.connect("drag-motion", self._on_drag_motion)
|
||||||
|
# self.connect('drag-drop', self._on_drag_set)
|
||||||
|
self.connect("drag-data-received", self._on_drag_data_received)
|
||||||
|
|
||||||
|
def _on_drag_motion(self, widget, drag_context, x, y, time):
|
||||||
|
Gdk.drag_status(drag_context, drag_context.get_actions(), time)
|
||||||
|
|
||||||
|
return False
|
||||||
|
|
||||||
|
def _on_drag_set(self, widget, drag_context, data, info, time):
|
||||||
|
self.drag_get_data(drag_context, drag_context.list_targets()[-1], time)
|
||||||
|
|
||||||
|
return False
|
||||||
|
|
||||||
|
def _on_drag_data_received(self, widget, drag_context, x, y, data, info, time):
|
||||||
|
if info == 70: return
|
||||||
|
|
||||||
|
if info == 80:
|
||||||
|
uris = data.get_uris()
|
||||||
|
files = []
|
||||||
|
|
||||||
|
if len(uris) == 0:
|
||||||
|
uris = data.get_text().split("\n")
|
||||||
|
|
||||||
|
for uri in uris:
|
||||||
|
gfile = None
|
||||||
|
try:
|
||||||
|
gfile = Gio.File.new_for_uri(uri)
|
||||||
|
except Exception as e:
|
||||||
|
gfile = Gio.File.new_for_path(uri)
|
||||||
|
|
||||||
|
files.append(gfile)
|
||||||
|
|
||||||
|
event_system.emit('set_pre_drop_dnd', (files,))
|
|
@ -0,0 +1,20 @@
|
||||||
|
# Python imports
|
||||||
|
|
||||||
|
# Lib imports
|
||||||
|
|
||||||
|
# Application imports
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class IPCSignalsMixin:
|
||||||
|
""" IPCSignalsMixin handle messages from another starting solarfm process. """
|
||||||
|
|
||||||
|
def print_to_console(self, message=None):
|
||||||
|
logger.debug(message)
|
||||||
|
|
||||||
|
def handle_file_from_ipc(self, path: str) -> None:
|
||||||
|
logger.debug(f"File From IPC: {path}")
|
||||||
|
|
||||||
|
def handle_dir_from_ipc(self, path: str) -> None:
|
||||||
|
logger.debug(f"Dir From IPC: {path}")
|
|
@ -0,0 +1,98 @@
|
||||||
|
# Python imports
|
||||||
|
import re
|
||||||
|
|
||||||
|
# Lib imports
|
||||||
|
import gi
|
||||||
|
gi.require_version('Gtk', '3.0')
|
||||||
|
gi.require_version('Gdk', '3.0')
|
||||||
|
from gi.repository import Gtk
|
||||||
|
from gi.repository import Gdk
|
||||||
|
|
||||||
|
# Application imports
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
valid_keyvalue_pat = re.compile(r"[a-z0-9A-Z-_\[\]\(\)\| ]")
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class KeyboardSignalsMixin:
|
||||||
|
""" KeyboardSignalsMixin keyboard hooks controller. """
|
||||||
|
|
||||||
|
# TODO: Need to set methods that use this to somehow check the keybindings state instead.
|
||||||
|
def unset_keys_and_data(self, widget = None, eve = None):
|
||||||
|
self.ctrl_down = False
|
||||||
|
self.shift_down = False
|
||||||
|
self.alt_down = False
|
||||||
|
|
||||||
|
def unmap_special_keys(self, keyname):
|
||||||
|
if "control" in keyname:
|
||||||
|
self.ctrl_down = False
|
||||||
|
if "shift" in keyname:
|
||||||
|
self.shift_down = False
|
||||||
|
if "alt" in keyname:
|
||||||
|
self.alt_down = False
|
||||||
|
|
||||||
|
def on_global_key_press_controller(self, eve, user_data):
|
||||||
|
keyname = Gdk.keyval_name(user_data.keyval).lower()
|
||||||
|
modifiers = Gdk.ModifierType(user_data.get_state() & ~Gdk.ModifierType.LOCK_MASK)
|
||||||
|
|
||||||
|
self.was_midified_key = True if modifiers != 0 else False
|
||||||
|
|
||||||
|
if keyname.replace("_l", "").replace("_r", "") in ["control", "alt", "shift"]:
|
||||||
|
if "control" in keyname:
|
||||||
|
self.ctrl_down = True
|
||||||
|
if "shift" in keyname:
|
||||||
|
self.shift_down = True
|
||||||
|
if "alt" in keyname:
|
||||||
|
self.alt_down = True
|
||||||
|
|
||||||
|
def on_global_key_release_controller(self, widget, event):
|
||||||
|
""" Handler for keyboard events """
|
||||||
|
keyname = Gdk.keyval_name(event.keyval).lower()
|
||||||
|
modifiers = Gdk.ModifierType(event.get_state() & ~Gdk.ModifierType.LOCK_MASK)
|
||||||
|
|
||||||
|
if keyname.replace("_l", "").replace("_r", "") in ["control", "alt", "shift"]:
|
||||||
|
should_return = self.was_midified_key and (self.ctrl_down or self.shift_down or self.alt_down)
|
||||||
|
self.unmap_special_keys(keyname)
|
||||||
|
|
||||||
|
if should_return:
|
||||||
|
self.was_midified_key = False
|
||||||
|
return
|
||||||
|
|
||||||
|
mapping = keybindings.lookup(event)
|
||||||
|
logger.debug(f"on_global_key_release_controller > key > {keyname}")
|
||||||
|
logger.debug(f"on_global_key_release_controller > keyval > {event.keyval}")
|
||||||
|
logger.debug(f"on_global_key_release_controller > mapping > {mapping}")
|
||||||
|
|
||||||
|
if mapping:
|
||||||
|
self.handle_mapped_key_event(mapping)
|
||||||
|
else:
|
||||||
|
self.handle_as_key_event_scope(mapping)
|
||||||
|
|
||||||
|
def handle_mapped_key_event(self, mapping):
|
||||||
|
try:
|
||||||
|
self.handle_as_controller_scope()
|
||||||
|
except Exception:
|
||||||
|
self.handle_as_plugin_scope(mapping)
|
||||||
|
|
||||||
|
def handle_as_controller_scope(self, mapping):
|
||||||
|
getattr(self, mapping)()
|
||||||
|
|
||||||
|
def handle_as_plugin_scope(self, mapping):
|
||||||
|
if "||" in mapping:
|
||||||
|
sender, eve_type = mapping.split("||")
|
||||||
|
else:
|
||||||
|
sender = ""
|
||||||
|
eve_type = mapping
|
||||||
|
|
||||||
|
self.handle_as_key_event_system(sender, eve_type)
|
||||||
|
|
||||||
|
def handle_as_key_event_scope(self, mapping):
|
||||||
|
logger.debug(f"on_global_key_release_controller > key > {keyname}")
|
||||||
|
|
||||||
|
if self.ctrl_down and not keyname in ["1", "kp_1", "2", "kp_2", "3", "kp_3", "4", "kp_4"]:
|
||||||
|
self.handle_key_event_system(None, mapping)
|
||||||
|
|
||||||
|
def handle_key_event_system(self, sender, eve_type):
|
||||||
|
event_system.emit(eve_type)
|
|
@ -0,0 +1,15 @@
|
||||||
|
# Python imports
|
||||||
|
from typing import Optional
|
||||||
|
|
||||||
|
# Lib imports
|
||||||
|
from sqlmodel import SQLModel, Field
|
||||||
|
|
||||||
|
# Application imports
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class User(SQLModel, table = True):
|
||||||
|
id: Optional[int] = Field(default = None, primary_key = True)
|
||||||
|
name: str
|
||||||
|
password: str
|
||||||
|
email: Optional[str] = None
|
|
@ -0,0 +1,4 @@
|
||||||
|
"""
|
||||||
|
Settings module
|
||||||
|
"""
|
||||||
|
from .manager import SettingsManager
|
|
@ -0,0 +1,190 @@
|
||||||
|
# Python imports
|
||||||
|
import inspect
|
||||||
|
import json
|
||||||
|
import zipfile
|
||||||
|
|
||||||
|
from os import path
|
||||||
|
from os import mkdir
|
||||||
|
|
||||||
|
# Lib imports
|
||||||
|
|
||||||
|
# Application imports
|
||||||
|
from ..singleton import Singleton
|
||||||
|
from .start_check_mixin import StartCheckMixin
|
||||||
|
from .options.settings import Settings
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class MissingConfigError(Exception):
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class SettingsManager(StartCheckMixin, Singleton):
|
||||||
|
def __init__(self):
|
||||||
|
self._SCRIPT_PTH = path.dirname(path.realpath(__file__))
|
||||||
|
self._USER_HOME = path.expanduser('~')
|
||||||
|
self._HOME_CONFIG_PATH = f"{self._USER_HOME}/.config/{app_name.lower()}"
|
||||||
|
self._USR_PATH = f"/usr/share/{app_name.lower()}"
|
||||||
|
self._USR_CONFIG_FILE = f"{self._USR_PATH}/settings.json"
|
||||||
|
|
||||||
|
self._CONTEXT_PATH = f"{self._HOME_CONFIG_PATH}/context_path"
|
||||||
|
self._PLUGINS_PATH = f"{self._HOME_CONFIG_PATH}/plugins"
|
||||||
|
self._DEFAULT_ICONS = f"{self._HOME_CONFIG_PATH}/icons"
|
||||||
|
self._CONFIG_FILE = f"{self._HOME_CONFIG_PATH}/settings.json"
|
||||||
|
self._GLADE_FILE = f"{self._HOME_CONFIG_PATH}/Main_Window.glade"
|
||||||
|
self._CSS_FILE = f"{self._HOME_CONFIG_PATH}/stylesheet.css"
|
||||||
|
self._KEY_BINDINGS_FILE = f"{self._HOME_CONFIG_PATH}/key-bindings.json"
|
||||||
|
self._PID_FILE = f"{self._HOME_CONFIG_PATH}/{app_name.lower()}.pid"
|
||||||
|
self._UI_WIDEGTS_PATH = f"{self._HOME_CONFIG_PATH}/ui_widgets"
|
||||||
|
self._CONTEXT_MENU = f"{self._HOME_CONFIG_PATH}/contexct_menu.json"
|
||||||
|
self._WINDOW_ICON = f"{self._DEFAULT_ICONS}/{app_name.lower()}.png"
|
||||||
|
|
||||||
|
# self._USR_CONFIG_FILE = f"{self._USR_PATH}/settings.json"
|
||||||
|
# self._PLUGINS_PATH = f"plugins"
|
||||||
|
# self._CONFIG_FILE = f"settings.json"
|
||||||
|
# self._GLADE_FILE = f"Main_Window.glade"
|
||||||
|
# self._CSS_FILE = f"stylesheet.css"
|
||||||
|
# self._KEY_BINDINGS_FILE = f"key-bindings.json"
|
||||||
|
# self._PID_FILE = f"{app_name.lower()}.pid"
|
||||||
|
# self._WINDOW_ICON = f"{app_name.lower()}.png"
|
||||||
|
# self._UI_WIDEGTS_PATH = f"ui_widgets"
|
||||||
|
# self._CONTEXT_MENU = f"contexct_menu.json"
|
||||||
|
# self._DEFAULT_ICONS = f"icons"
|
||||||
|
|
||||||
|
|
||||||
|
# with zipfile.ZipFile("files.zip", mode="r", allowZip64=True) as zf:
|
||||||
|
# with io.TextIOWrapper(zf.open("text1.txt"), encoding="utf-8") as f:
|
||||||
|
|
||||||
|
|
||||||
|
if not path.exists(self._HOME_CONFIG_PATH):
|
||||||
|
mkdir(self._HOME_CONFIG_PATH)
|
||||||
|
if not path.exists(self._PLUGINS_PATH):
|
||||||
|
mkdir(self._PLUGINS_PATH)
|
||||||
|
|
||||||
|
if not path.exists(self._DEFAULT_ICONS):
|
||||||
|
self._DEFAULT_ICONS = f"{self._USR_PATH}/icons"
|
||||||
|
if not path.exists(self._DEFAULT_ICONS):
|
||||||
|
raise MissingConfigError("Unable to find the application icons directory.")
|
||||||
|
if not path.exists(self._GLADE_FILE):
|
||||||
|
self._GLADE_FILE = f"{self._USR_PATH}/Main_Window.glade"
|
||||||
|
if not path.exists(self._GLADE_FILE):
|
||||||
|
raise MissingConfigError("Unable to find the application Glade file.")
|
||||||
|
if not path.exists(self._KEY_BINDINGS_FILE):
|
||||||
|
self._KEY_BINDINGS_FILE = f"{self._USR_PATH}/key-bindings.json"
|
||||||
|
if not path.exists(self._KEY_BINDINGS_FILE):
|
||||||
|
raise MissingConfigError("Unable to find the application Keybindings file.")
|
||||||
|
if not path.exists(self._CSS_FILE):
|
||||||
|
self._CSS_FILE = f"{self._USR_PATH}/stylesheet.css"
|
||||||
|
if not path.exists(self._CSS_FILE):
|
||||||
|
raise MissingConfigError("Unable to find the application Stylesheet file.")
|
||||||
|
if not path.exists(self._WINDOW_ICON):
|
||||||
|
self._WINDOW_ICON = f"{self._USR_PATH}/icons/{app_name.lower()}.png"
|
||||||
|
if not path.exists(self._WINDOW_ICON):
|
||||||
|
raise MissingConfigError("Unable to find the application icon.")
|
||||||
|
if not path.exists(self._UI_WIDEGTS_PATH):
|
||||||
|
self._UI_WIDEGTS_PATH = f"{self._USR_PATH}/ui_widgets"
|
||||||
|
if not path.exists(self._CONTEXT_MENU):
|
||||||
|
self._CONTEXT_MENU = f"{self._USR_PATH}/contexct_menu.json"
|
||||||
|
|
||||||
|
|
||||||
|
try:
|
||||||
|
with open(self._KEY_BINDINGS_FILE) as file:
|
||||||
|
bindings = json.load(file)["keybindings"]
|
||||||
|
keybindings.configure(bindings)
|
||||||
|
except Exception as e:
|
||||||
|
print( f"Settings Manager: {self._KEY_BINDINGS_FILE}\n\t\t{repr(e)}" )
|
||||||
|
|
||||||
|
try:
|
||||||
|
with open(self._CONTEXT_MENU) as file:
|
||||||
|
self._context_menu_data = json.load(file)
|
||||||
|
except Exception as e:
|
||||||
|
print( f"Settings Manager: {self._CONTEXT_MENU}\n\t\t{repr(e)}" )
|
||||||
|
|
||||||
|
|
||||||
|
self.settings: Settings = None
|
||||||
|
self._main_window = None
|
||||||
|
self._builder = None
|
||||||
|
self.PAINT_BG_COLOR = (0, 0, 0, 0.0)
|
||||||
|
|
||||||
|
self._trace_debug = False
|
||||||
|
self._debug = False
|
||||||
|
self._dirty_start = False
|
||||||
|
|
||||||
|
|
||||||
|
def register_signals_to_builder(self, classes=None):
|
||||||
|
handlers = {}
|
||||||
|
|
||||||
|
for c in classes:
|
||||||
|
methods = None
|
||||||
|
try:
|
||||||
|
methods = inspect.getmembers(c, predicate=inspect.ismethod)
|
||||||
|
handlers.update(methods)
|
||||||
|
except Exception as e:
|
||||||
|
...
|
||||||
|
|
||||||
|
self._builder.connect_signals(handlers)
|
||||||
|
|
||||||
|
def set_main_window(self, window): self._main_window = window
|
||||||
|
def set_builder(self, builder) -> any: self._builder = builder
|
||||||
|
|
||||||
|
|
||||||
|
def get_monitor_data(self) -> list:
|
||||||
|
screen = self._main_window.get_screen()
|
||||||
|
monitors = []
|
||||||
|
for m in range(screen.get_n_monitors()):
|
||||||
|
monitors.append(screen.get_monitor_geometry(m))
|
||||||
|
print("{}x{}+{}+{}".format(monitor.width, monitor.height, monitor.x, monitor.y))
|
||||||
|
|
||||||
|
return monitors
|
||||||
|
|
||||||
|
def get_main_window(self) -> any: return self._main_window
|
||||||
|
def get_builder(self) -> any: return self._builder
|
||||||
|
def get_paint_bg_color(self) -> any: return self.PAINT_BG_COLOR
|
||||||
|
def get_glade_file(self) -> str: return self._GLADE_FILE
|
||||||
|
def get_ui_widgets_path(self) -> str: return self._UI_WIDEGTS_PATH
|
||||||
|
def get_context_menu_data(self) -> str: return self._context_menu_data
|
||||||
|
|
||||||
|
def get_context_path(self) -> str: return self._CONTEXT_PATH
|
||||||
|
def get_plugins_path(self) -> str: return self._PLUGINS_PATH
|
||||||
|
def get_icon_theme(self) -> str: return self._ICON_THEME
|
||||||
|
def get_css_file(self) -> str: return self._CSS_FILE
|
||||||
|
def get_home_config_path(self) -> str: return self._HOME_CONFIG_PATH
|
||||||
|
def get_window_icon(self) -> str: return self._WINDOW_ICON
|
||||||
|
def get_home_path(self) -> str: return self._USER_HOME
|
||||||
|
|
||||||
|
def is_trace_debug(self) -> str: return self._trace_debug
|
||||||
|
def is_debug(self) -> str: return self._debug
|
||||||
|
|
||||||
|
def call_method(self, target_class = None, _method_name = None, data = None):
|
||||||
|
method_name = str(_method_name)
|
||||||
|
method = getattr(target_class, method_name, lambda data: f"No valid key passed...\nkey={method_name}\nargs={data}")
|
||||||
|
return method(data) if data else method()
|
||||||
|
|
||||||
|
def set_main_window_x(self, x = 0): self.settings.config.main_window_x = x
|
||||||
|
def set_main_window_y(self, y = 0): self.settings.config.main_window_y = y
|
||||||
|
def set_main_window_width(self, width = 800): self.settings.config.main_window_width = width
|
||||||
|
def set_main_window_height(self, height = 600): self.settings.config.main_window_height = height
|
||||||
|
def set_main_window_min_width(self, width = 720): self.settings.config.main_window_min_width = width
|
||||||
|
def set_main_window_min_height(self, height = 480): self.settings.config.main_window_min_height = height
|
||||||
|
|
||||||
|
def set_trace_debug(self, trace_debug):
|
||||||
|
self._trace_debug = trace_debug
|
||||||
|
|
||||||
|
def set_debug(self, debug):
|
||||||
|
self._debug = debug
|
||||||
|
|
||||||
|
|
||||||
|
def load_settings(self):
|
||||||
|
if not path.exists(self._CONFIG_FILE):
|
||||||
|
self.settings = Settings()
|
||||||
|
return
|
||||||
|
|
||||||
|
with open(self._CONFIG_FILE) as file:
|
||||||
|
data = json.load(file)
|
||||||
|
data["load_defaults"] = False
|
||||||
|
self.settings = Settings(**data)
|
||||||
|
|
||||||
|
def save_settings(self):
|
||||||
|
with open(self._CONFIG_FILE, 'w') as outfile:
|
||||||
|
json.dump(self.settings.as_dict(), outfile, separators=(',', ':'), indent=4)
|
|
@ -0,0 +1,8 @@
|
||||||
|
"""
|
||||||
|
Options module
|
||||||
|
"""
|
||||||
|
from .settings import Settings
|
||||||
|
from .config import Config
|
||||||
|
from .filters import Filters
|
||||||
|
from .theming import Theming
|
||||||
|
from .debugging import Debugging
|
|
@ -0,0 +1,39 @@
|
||||||
|
# Python imports
|
||||||
|
from dataclasses import dataclass, field
|
||||||
|
|
||||||
|
# Lib imports
|
||||||
|
|
||||||
|
# Application imports
|
||||||
|
|
||||||
|
|
||||||
|
@dataclass
|
||||||
|
class Config:
|
||||||
|
base_of_home: str = ""
|
||||||
|
hide_hidden_files: str = "true"
|
||||||
|
thumbnailer_path: str = "ffmpegthumbnailer"
|
||||||
|
blender_thumbnailer_path: str = ""
|
||||||
|
go_past_home: str = "true"
|
||||||
|
lock_folder: str = "false"
|
||||||
|
locked_folders: list = field(default_factory=lambda: [ "venv", "flasks" ])
|
||||||
|
mplayer_options: str = "-quiet -really-quiet -xy 1600 -geometry 50%:50%",
|
||||||
|
music_app: str = "/opt/deadbeef/bin/deadbeef"
|
||||||
|
media_app: str = "mpv"
|
||||||
|
image_app: str = "mirage"
|
||||||
|
office_app: str = "libreoffice"
|
||||||
|
pdf_app: str = "evince"
|
||||||
|
code_app: str = "atom"
|
||||||
|
text_app: str = "leafpad"
|
||||||
|
file_manager_app: str = "solarfm"
|
||||||
|
terminal_app: str = "terminator"
|
||||||
|
remux_folder_max_disk_usage: str = "8589934592"
|
||||||
|
make_transparent: int = 0
|
||||||
|
main_window_x: int = 721
|
||||||
|
main_window_y: int = 465
|
||||||
|
main_window_min_width: int = 720
|
||||||
|
main_window_min_height: int = 480
|
||||||
|
main_window_width: int = 800
|
||||||
|
main_window_height: int = 600
|
||||||
|
application_dirs: list = field(default_factory=lambda: [
|
||||||
|
"/usr/share/applications",
|
||||||
|
f"{settings_manager.get_home_path()}/.local/share/applications"
|
||||||
|
])
|
|
@ -0,0 +1,12 @@
|
||||||
|
# Python imports
|
||||||
|
from dataclasses import dataclass
|
||||||
|
|
||||||
|
# Lib imports
|
||||||
|
|
||||||
|
# Application imports
|
||||||
|
|
||||||
|
|
||||||
|
@dataclass
|
||||||
|
class Debugging:
|
||||||
|
ch_log_lvl: int = 10
|
||||||
|
fh_log_lvl: int = 20
|
|
@ -0,0 +1,90 @@
|
||||||
|
# Python imports
|
||||||
|
from dataclasses import dataclass, field
|
||||||
|
|
||||||
|
# Lib imports
|
||||||
|
|
||||||
|
# Application imports
|
||||||
|
|
||||||
|
|
||||||
|
@dataclass
|
||||||
|
class Filters:
|
||||||
|
meshs: list = field(default_factory=lambda: [
|
||||||
|
".blend",
|
||||||
|
".dae",
|
||||||
|
".fbx",
|
||||||
|
".gltf",
|
||||||
|
".obj",
|
||||||
|
".stl"
|
||||||
|
])
|
||||||
|
code: list = field(default_factory=lambda: [
|
||||||
|
".cpp",
|
||||||
|
".css",
|
||||||
|
".c",
|
||||||
|
".go",
|
||||||
|
".html",
|
||||||
|
".htm",
|
||||||
|
".java",
|
||||||
|
".js",
|
||||||
|
".json",
|
||||||
|
".lua",
|
||||||
|
".md",
|
||||||
|
".py",
|
||||||
|
".rs",
|
||||||
|
".toml",
|
||||||
|
".xml",
|
||||||
|
".pom"
|
||||||
|
])
|
||||||
|
videos: list = field(default_factory=lambda:[
|
||||||
|
".mkv",
|
||||||
|
".mp4",
|
||||||
|
".webm",
|
||||||
|
".avi",
|
||||||
|
".mov",
|
||||||
|
".m4v",
|
||||||
|
".mpg",
|
||||||
|
".mpeg",
|
||||||
|
".wmv",
|
||||||
|
".flv"
|
||||||
|
])
|
||||||
|
office: list = field(default_factory=lambda: [
|
||||||
|
".doc",
|
||||||
|
".docx",
|
||||||
|
".xls",
|
||||||
|
".xlsx",
|
||||||
|
".xlt",
|
||||||
|
".xltx",
|
||||||
|
".xlm",
|
||||||
|
".ppt",
|
||||||
|
".pptx",
|
||||||
|
".pps",
|
||||||
|
".ppsx",
|
||||||
|
".odt",
|
||||||
|
".rtf"
|
||||||
|
])
|
||||||
|
images: list = field(default_factory=lambda: [
|
||||||
|
".png",
|
||||||
|
".jpg",
|
||||||
|
".jpeg",
|
||||||
|
".gif",
|
||||||
|
".ico",
|
||||||
|
".tga",
|
||||||
|
".webp"
|
||||||
|
])
|
||||||
|
text: list = field(default_factory=lambda: [
|
||||||
|
".txt",
|
||||||
|
".text",
|
||||||
|
".sh",
|
||||||
|
".cfg",
|
||||||
|
".conf",
|
||||||
|
".log"
|
||||||
|
])
|
||||||
|
music: list = field(default_factory=lambda: [
|
||||||
|
".psf",
|
||||||
|
".mp3",
|
||||||
|
".ogg",
|
||||||
|
".flac",
|
||||||
|
".m4a"
|
||||||
|
])
|
||||||
|
pdf: list = field(default_factory=lambda: [
|
||||||
|
".pdf"
|
||||||
|
])
|
|
@ -0,0 +1,31 @@
|
||||||
|
# Python imports
|
||||||
|
from dataclasses import dataclass, field
|
||||||
|
from dataclasses import asdict
|
||||||
|
|
||||||
|
# Gtk imports
|
||||||
|
|
||||||
|
# Application imports
|
||||||
|
from .config import Config
|
||||||
|
from .filters import Filters
|
||||||
|
from .theming import Theming
|
||||||
|
from .debugging import Debugging
|
||||||
|
|
||||||
|
|
||||||
|
@dataclass
|
||||||
|
class Settings:
|
||||||
|
load_defaults: bool = True
|
||||||
|
config: Config = field(default_factory=lambda: Config())
|
||||||
|
filters: Filters = field(default_factory=lambda: Filters())
|
||||||
|
theming: Theming = field(default_factory=lambda: Theming())
|
||||||
|
debugging: Debugging = field(default_factory=lambda: Debugging())
|
||||||
|
|
||||||
|
def __post_init__(self):
|
||||||
|
if not self.load_defaults:
|
||||||
|
self.load_defaults = False
|
||||||
|
self.config = Config(**self.config)
|
||||||
|
self.filters = Filters(**self.filters)
|
||||||
|
self.theming = Theming(**self.theming)
|
||||||
|
self.debugging = Debugging(**self.debugging)
|
||||||
|
|
||||||
|
def as_dict(self):
|
||||||
|
return asdict(self)
|
|
@ -0,0 +1,14 @@
|
||||||
|
# Python imports
|
||||||
|
from dataclasses import dataclass
|
||||||
|
|
||||||
|
# Lib imports
|
||||||
|
|
||||||
|
# Application imports
|
||||||
|
|
||||||
|
|
||||||
|
@dataclass
|
||||||
|
class Theming:
|
||||||
|
transparency: int = 64
|
||||||
|
success_color: str = "#88cc27"
|
||||||
|
warning_color: str = "#ffa800"
|
||||||
|
error_color: str = "#ff0000"
|
|
@ -0,0 +1,3 @@
|
||||||
|
"""
|
||||||
|
Settings Other module
|
||||||
|
"""
|
|
@ -0,0 +1,42 @@
|
||||||
|
# Python imports
|
||||||
|
|
||||||
|
# Lib imports
|
||||||
|
import gi
|
||||||
|
gi.require_version('WebKit2', '4.0')
|
||||||
|
from gi.repository import WebKit2
|
||||||
|
|
||||||
|
# Application imports
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class WebkitUISettings(WebKit2.Settings):
|
||||||
|
def __init__(self):
|
||||||
|
super(WebkitUISettings, self).__init__()
|
||||||
|
|
||||||
|
self._set_default_settings()
|
||||||
|
|
||||||
|
|
||||||
|
# Note: Highly insecure setup but most "app" like setup I could think of.
|
||||||
|
# Audit heavily any scripts/links ran/clicked under this setup!
|
||||||
|
def _set_default_settings(self):
|
||||||
|
self.set_enable_xss_auditor(True)
|
||||||
|
self.set_enable_hyperlink_auditing(True)
|
||||||
|
# self.set_enable_xss_auditor(False)
|
||||||
|
# self.set_enable_hyperlink_auditing(False)
|
||||||
|
self.set_allow_file_access_from_file_urls(True)
|
||||||
|
self.set_allow_universal_access_from_file_urls(True)
|
||||||
|
|
||||||
|
self.set_enable_page_cache(False)
|
||||||
|
self.set_enable_offline_web_application_cache(False)
|
||||||
|
self.set_enable_html5_local_storage(False)
|
||||||
|
self.set_enable_html5_database(False)
|
||||||
|
|
||||||
|
self.set_enable_fullscreen(False)
|
||||||
|
self.set_print_backgrounds(False)
|
||||||
|
self.set_enable_tabs_to_links(False)
|
||||||
|
self.set_enable_developer_extras(True)
|
||||||
|
self.set_enable_webrtc(True)
|
||||||
|
self.set_enable_webaudio(True)
|
||||||
|
self.set_enable_accelerated_2d_canvas(True)
|
||||||
|
|
||||||
|
self.set_user_agent(f"{app_name}")
|
|
@ -0,0 +1,63 @@
|
||||||
|
# Python imports
|
||||||
|
import os
|
||||||
|
import json
|
||||||
|
import inspect
|
||||||
|
|
||||||
|
# Lib imports
|
||||||
|
|
||||||
|
# Application imports
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class StartCheckMixin:
|
||||||
|
def is_dirty_start(self) -> bool:
|
||||||
|
return self._dirty_start
|
||||||
|
|
||||||
|
def clear_pid(self):
|
||||||
|
if not self.is_trace_debug():
|
||||||
|
self._clean_pid()
|
||||||
|
|
||||||
|
def do_dirty_start_check(self):
|
||||||
|
if self.is_trace_debug():
|
||||||
|
pid = os.getpid()
|
||||||
|
self._print_pid(pid)
|
||||||
|
return
|
||||||
|
|
||||||
|
if os.path.exists(self._PID_FILE):
|
||||||
|
with open(self._PID_FILE, "r") as f:
|
||||||
|
pid = f.readline().strip()
|
||||||
|
if pid not in ("", None):
|
||||||
|
if self.is_pid_alive( int(pid) ):
|
||||||
|
print("PID file exists and PID is alive... Letting downstream errors (sans debug args) handle app closure propigation.")
|
||||||
|
return
|
||||||
|
|
||||||
|
self._write_new_pid()
|
||||||
|
|
||||||
|
""" Check For the existence of a unix pid. """
|
||||||
|
def is_pid_alive(self, pid):
|
||||||
|
print(f"PID Found: {pid}")
|
||||||
|
|
||||||
|
try:
|
||||||
|
os.kill(pid, 0)
|
||||||
|
except OSError:
|
||||||
|
print(f"{app_name} PID file exists but PID is irrelevant; starting dirty...")
|
||||||
|
self._dirty_start = True
|
||||||
|
return False
|
||||||
|
|
||||||
|
return True
|
||||||
|
|
||||||
|
def _write_new_pid(self):
|
||||||
|
pid = os.getpid()
|
||||||
|
self._write_pid(pid)
|
||||||
|
self._print_pid(pid)
|
||||||
|
|
||||||
|
def _print_pid(self, pid):
|
||||||
|
print(f"{app_name} PID: {pid}")
|
||||||
|
|
||||||
|
def _clean_pid(self):
|
||||||
|
os.unlink(self._PID_FILE)
|
||||||
|
|
||||||
|
def _write_pid(self, pid):
|
||||||
|
with open(self._PID_FILE, "w") as _pid:
|
||||||
|
_pid.write(f"{pid}")
|
|
@ -0,0 +1,24 @@
|
||||||
|
# Python imports
|
||||||
|
|
||||||
|
# Lib imports
|
||||||
|
|
||||||
|
# Application imports
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class SingletonError(Exception):
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class Singleton:
|
||||||
|
ccount = 0
|
||||||
|
|
||||||
|
def __new__(cls, *args, **kwargs):
|
||||||
|
obj = super(Singleton, cls).__new__(cls)
|
||||||
|
cls.ccount += 1
|
||||||
|
|
||||||
|
if cls.ccount == 2:
|
||||||
|
raise SingletonError(f"Exceeded {cls.__name__} instantiation limit...")
|
||||||
|
|
||||||
|
return obj
|
|
@ -0,0 +1,3 @@
|
||||||
|
"""
|
||||||
|
Gtk Bound Plugins Module
|
||||||
|
"""
|
|
@ -0,0 +1,68 @@
|
||||||
|
# Python imports
|
||||||
|
import os
|
||||||
|
import json
|
||||||
|
from os.path import join
|
||||||
|
|
||||||
|
# Lib imports
|
||||||
|
|
||||||
|
# Application imports
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class ManifestProcessor(Exception):
|
||||||
|
...
|
||||||
|
|
||||||
|
|
||||||
|
class Plugin:
|
||||||
|
path: str = None
|
||||||
|
name: str = None
|
||||||
|
author: str = None
|
||||||
|
version: str = None
|
||||||
|
support: str = None
|
||||||
|
requests:{} = None
|
||||||
|
reference: type = None
|
||||||
|
|
||||||
|
|
||||||
|
class ManifestProcessor:
|
||||||
|
def __init__(self, path, builder):
|
||||||
|
manifest = join(path, "manifest.json")
|
||||||
|
if not os.path.exists(manifest):
|
||||||
|
raise Exception("Invalid Plugin Structure: Plugin doesn't have 'manifest.json'. Aboarting load...")
|
||||||
|
|
||||||
|
self._path = path
|
||||||
|
self._builder = builder
|
||||||
|
with open(manifest) as f:
|
||||||
|
data = json.load(f)
|
||||||
|
self._manifest = data["manifest"]
|
||||||
|
self._plugin = self.collect_info()
|
||||||
|
|
||||||
|
def collect_info(self) -> Plugin:
|
||||||
|
plugin = Plugin()
|
||||||
|
plugin.path = self._path
|
||||||
|
plugin.name = self._manifest["name"]
|
||||||
|
plugin.author = self._manifest["author"]
|
||||||
|
plugin.version = self._manifest["version"]
|
||||||
|
plugin.support = self._manifest["support"]
|
||||||
|
plugin.requests = self._manifest["requests"]
|
||||||
|
|
||||||
|
return plugin
|
||||||
|
|
||||||
|
def get_loading_data(self):
|
||||||
|
loading_data = {}
|
||||||
|
requests = self._plugin.requests
|
||||||
|
keys = requests.keys()
|
||||||
|
|
||||||
|
if "pass_events" in keys:
|
||||||
|
if requests["pass_events"] in ["true"]:
|
||||||
|
loading_data["pass_events"] = True
|
||||||
|
|
||||||
|
if "bind_keys" in keys:
|
||||||
|
if isinstance(requests["bind_keys"], list):
|
||||||
|
loading_data["bind_keys"] = requests["bind_keys"]
|
||||||
|
|
||||||
|
if "pass_ui_objects" in keys:
|
||||||
|
if isinstance(requests["pass_ui_objects"], list):
|
||||||
|
loading_data["pass_ui_objects"] = [ self._builder.get_object(obj) for obj in requests["pass_ui_objects"] ]
|
||||||
|
|
||||||
|
return self._plugin, loading_data
|
|
@ -0,0 +1,92 @@
|
||||||
|
# Python imports
|
||||||
|
import os
|
||||||
|
import time
|
||||||
|
import inspect
|
||||||
|
|
||||||
|
# Lib imports
|
||||||
|
|
||||||
|
# Application imports
|
||||||
|
|
||||||
|
|
||||||
|
class PluginBaseException(Exception):
|
||||||
|
...
|
||||||
|
|
||||||
|
|
||||||
|
class PluginBase:
|
||||||
|
def __init__(self, **kwargs):
|
||||||
|
super().__init__(**kwargs)
|
||||||
|
self.name = "Example Plugin" # NOTE: Need to remove after establishing private bidirectional 1-1 message bus
|
||||||
|
# where self.name should not be needed for message comms
|
||||||
|
|
||||||
|
self._builder = None
|
||||||
|
self._ui_objects = None
|
||||||
|
self._event_system = None
|
||||||
|
|
||||||
|
|
||||||
|
def run(self):
|
||||||
|
"""
|
||||||
|
Must define regardless if needed and can 'pass' if plugin doesn't need it.
|
||||||
|
Is intended to be used to setup internal signals or custom Gtk Builders/UI logic.
|
||||||
|
"""
|
||||||
|
raise PluginBaseException("Method hasn't been overriden...")
|
||||||
|
|
||||||
|
def generate_reference_ui_element(self):
|
||||||
|
"""
|
||||||
|
Requests Key: 'ui_target': "plugin_control_list",
|
||||||
|
Must define regardless if needed and can 'pass' if plugin doesn't use it.
|
||||||
|
Must return a widget if "ui_target" is set.
|
||||||
|
"""
|
||||||
|
raise PluginBaseException("Method hasn't been overriden...")
|
||||||
|
|
||||||
|
def set_ui_object_collection(self, ui_objects):
|
||||||
|
"""
|
||||||
|
Requests Key: "pass_ui_objects": [""]
|
||||||
|
Request reference to a UI component. Will be passed back as array to plugin.
|
||||||
|
Must define in plugin if set and an array of valid glade UI IDs is given.
|
||||||
|
"""
|
||||||
|
self._ui_objects = ui_objects
|
||||||
|
|
||||||
|
def set_event_system(self, event_system):
|
||||||
|
"""
|
||||||
|
Requests Key: 'pass_events': "true"
|
||||||
|
Must define in plugin if "pass_events" is set to "true" string.
|
||||||
|
"""
|
||||||
|
self._event_system = event_system
|
||||||
|
|
||||||
|
def subscribe_to_events(self):
|
||||||
|
...
|
||||||
|
|
||||||
|
def _connect_builder_signals(self, caller_class, builder):
|
||||||
|
classes = [caller_class]
|
||||||
|
handlers = {}
|
||||||
|
for c in classes:
|
||||||
|
methods = None
|
||||||
|
try:
|
||||||
|
methods = inspect.getmembers(c, predicate=inspect.ismethod)
|
||||||
|
handlers.update(methods)
|
||||||
|
except Exception as e:
|
||||||
|
logger.debug(repr(e))
|
||||||
|
|
||||||
|
builder.connect_signals(handlers)
|
||||||
|
|
||||||
|
def reload_package(self, plugin_path, module_dict_main=locals()):
|
||||||
|
import importlib
|
||||||
|
from pathlib import Path
|
||||||
|
|
||||||
|
def reload_package_recursive(current_dir, module_dict):
|
||||||
|
for path in current_dir.iterdir():
|
||||||
|
if "__init__" in str(path) or path.stem not in module_dict:
|
||||||
|
continue
|
||||||
|
|
||||||
|
if path.is_file() and path.suffix == ".py":
|
||||||
|
importlib.reload(module_dict[path.stem])
|
||||||
|
elif path.is_dir():
|
||||||
|
reload_package_recursive(path, module_dict[path.stem].__dict__)
|
||||||
|
|
||||||
|
reload_package_recursive(Path(plugin_path).parent, module_dict_main["module_dict_main"])
|
||||||
|
|
||||||
|
|
||||||
|
def clear_children(self, widget: type) -> None:
|
||||||
|
""" Clear children of a gtk widget. """
|
||||||
|
for child in widget.get_children():
|
||||||
|
widget.remove(child)
|
|
@ -0,0 +1,119 @@
|
||||||
|
# Python imports
|
||||||
|
import os
|
||||||
|
import sys
|
||||||
|
import importlib
|
||||||
|
import traceback
|
||||||
|
from os.path import join
|
||||||
|
from os.path import isdir
|
||||||
|
|
||||||
|
# Lib imports
|
||||||
|
import gi
|
||||||
|
gi.require_version('Gtk', '3.0')
|
||||||
|
from gi.repository import Gtk
|
||||||
|
from gi.repository import Gio
|
||||||
|
|
||||||
|
# Application imports
|
||||||
|
from .manifest import Plugin
|
||||||
|
from .manifest import ManifestProcessor
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class InvalidPluginException(Exception):
|
||||||
|
...
|
||||||
|
|
||||||
|
|
||||||
|
class PluginsController:
|
||||||
|
"""PluginsController controller"""
|
||||||
|
|
||||||
|
def __init__(self):
|
||||||
|
path = os.path.dirname(os.path.realpath(__file__))
|
||||||
|
sys.path.insert(0, path) # NOTE: I think I'm not using this correctly...
|
||||||
|
|
||||||
|
self._builder = settings_manager.get_builder()
|
||||||
|
self._plugins_path = settings_manager.get_plugins_path()
|
||||||
|
|
||||||
|
self._plugins_dir_watcher = None
|
||||||
|
self._plugin_collection = []
|
||||||
|
|
||||||
|
|
||||||
|
def launch_plugins(self) -> None:
|
||||||
|
self._set_plugins_watcher()
|
||||||
|
self.load_plugins()
|
||||||
|
|
||||||
|
def _set_plugins_watcher(self) -> None:
|
||||||
|
self._plugins_dir_watcher = Gio.File.new_for_path(self._plugins_path) \
|
||||||
|
.monitor_directory(Gio.FileMonitorFlags.WATCH_MOVES, Gio.Cancellable())
|
||||||
|
self._plugins_dir_watcher.connect("changed", self._on_plugins_changed, ())
|
||||||
|
|
||||||
|
def _on_plugins_changed(self, file_monitor, file, other_file=None, eve_type=None, data=None):
|
||||||
|
if eve_type in [Gio.FileMonitorEvent.CREATED, Gio.FileMonitorEvent.DELETED,
|
||||||
|
Gio.FileMonitorEvent.RENAMED, Gio.FileMonitorEvent.MOVED_IN,
|
||||||
|
Gio.FileMonitorEvent.MOVED_OUT]:
|
||||||
|
self.reload_plugins(file)
|
||||||
|
|
||||||
|
def load_plugins(self, file: str = None) -> None:
|
||||||
|
logger.info(f"Loading plugins...")
|
||||||
|
parent_path = os.getcwd()
|
||||||
|
|
||||||
|
for path, folder in [[join(self._plugins_path, item), item] if os.path.isdir(join(self._plugins_path, item)) else None for item in os.listdir(self._plugins_path)]:
|
||||||
|
try:
|
||||||
|
target = join(path, "plugin.py")
|
||||||
|
manifest = ManifestProcessor(path, self._builder)
|
||||||
|
|
||||||
|
if not os.path.exists(target):
|
||||||
|
raise InvalidPluginException("Invalid Plugin Structure: Plugin doesn't have 'plugin.py'. Aboarting load...")
|
||||||
|
|
||||||
|
plugin, loading_data = manifest.get_loading_data()
|
||||||
|
module = self.load_plugin_module(path, folder, target)
|
||||||
|
self.execute_plugin(module, plugin, loading_data)
|
||||||
|
except Exception as e:
|
||||||
|
logger.info(f"Malformed Plugin: Not loading -->: '{folder}' !")
|
||||||
|
logger.debug("Trace: ", traceback.print_exc())
|
||||||
|
|
||||||
|
os.chdir(parent_path)
|
||||||
|
|
||||||
|
|
||||||
|
def load_plugin_module(self, path, folder, target):
|
||||||
|
os.chdir(path)
|
||||||
|
|
||||||
|
locations = []
|
||||||
|
self.collect_search_locations(path, locations)
|
||||||
|
|
||||||
|
spec = importlib.util.spec_from_file_location(folder, target, submodule_search_locations = locations)
|
||||||
|
module = importlib.util.module_from_spec(spec)
|
||||||
|
sys.modules[folder] = module
|
||||||
|
spec.loader.exec_module(module)
|
||||||
|
|
||||||
|
return module
|
||||||
|
|
||||||
|
def collect_search_locations(self, path, locations):
|
||||||
|
locations.append(path)
|
||||||
|
for file in os.listdir(path):
|
||||||
|
_path = os.path.join(path, file)
|
||||||
|
if os.path.isdir(_path):
|
||||||
|
self.collect_search_locations(_path, locations)
|
||||||
|
|
||||||
|
def execute_plugin(self, module: type, plugin: Plugin, loading_data: []):
|
||||||
|
plugin.reference = module.Plugin()
|
||||||
|
keys = loading_data.keys()
|
||||||
|
|
||||||
|
if "ui_target" in keys:
|
||||||
|
loading_data["ui_target"].add( plugin.reference.generate_reference_ui_element() )
|
||||||
|
loading_data["ui_target"].show()
|
||||||
|
|
||||||
|
if "pass_ui_objects" in keys:
|
||||||
|
plugin.reference.set_ui_object_collection( loading_data["pass_ui_objects"] )
|
||||||
|
|
||||||
|
if "pass_events" in keys:
|
||||||
|
plugin.reference.set_event_system(event_system)
|
||||||
|
plugin.reference.subscribe_to_events()
|
||||||
|
|
||||||
|
if "bind_keys" in keys:
|
||||||
|
keybindings.append_bindings( loading_data["bind_keys"] )
|
||||||
|
|
||||||
|
plugin.reference.run()
|
||||||
|
self._plugin_collection.append(plugin)
|
||||||
|
|
||||||
|
def reload_plugins(self, file: str = None) -> None:
|
||||||
|
logger.info(f"Reloading plugins... stub.")
|
|
@ -0,0 +1,39 @@
|
||||||
|
#!/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`
|
||||||
|
path=""
|
||||||
|
|
||||||
|
# NOTE: Remove if you want to pass file(s) besides directories...
|
||||||
|
if [[ ! "${1::1}" == /* ]]; then
|
||||||
|
path="${call_path}/${1}"
|
||||||
|
else
|
||||||
|
path="${1}"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -d "${path}" ]; then
|
||||||
|
echo "<change_me>: Path given not a directory..."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
# End NOTE: Remove if you want to pass file(s) besides directories...
|
||||||
|
|
||||||
|
# Collect abs paths and stuff in 'files' array
|
||||||
|
files=()
|
||||||
|
for f in "$@"; do
|
||||||
|
target=$(readlink -f "${f}")
|
||||||
|
i="${#files[@]}"
|
||||||
|
size=$(($i + 1))
|
||||||
|
files[$size]="${target}"
|
||||||
|
done
|
||||||
|
|
||||||
|
cd "/opt/"
|
||||||
|
python /opt/<change_me>.zip "$@"
|
||||||
|
}
|
||||||
|
main "$@";
|
|
@ -0,0 +1,11 @@
|
||||||
|
[Desktop Entry]
|
||||||
|
Name=<change_me>
|
||||||
|
GenericName=<change_me>
|
||||||
|
Comment=<change_me>
|
||||||
|
Exec=/bin/<change_me> %F
|
||||||
|
Icon=/usr/share/<change_me>/icons/<change_me>.png
|
||||||
|
Type=Application
|
||||||
|
StartupNotify=true
|
||||||
|
Categories=System;FileTools;Utility;Core;GTK;FileManager;
|
||||||
|
MimeType=
|
||||||
|
Terminal=false
|
|
@ -0,0 +1,28 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!-- Generated with glade 3.40.0 -->
|
||||||
|
<interface>
|
||||||
|
<requires lib="gtk+" version="3.20"/>
|
||||||
|
<object class="GtkBox" id="glade_box">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<property name="orientation">vertical</property>
|
||||||
|
<child>
|
||||||
|
<object class="GtkLabel" id="glade_label">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<property name="label" translatable="yes">Loaded Me From Glade!</property>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="expand">False</property>
|
||||||
|
<property name="fill">True</property>
|
||||||
|
<property name="position">0</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<placeholder/>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<placeholder/>
|
||||||
|
</child>
|
||||||
|
</object>
|
||||||
|
</interface>
|
|
@ -0,0 +1,16 @@
|
||||||
|
{
|
||||||
|
"Open Actions": {
|
||||||
|
"Open": ["STOCK_OPEN", "open"],
|
||||||
|
"Open With": ["STOCK_OPEN", "open_with"],
|
||||||
|
"Execute": ["STOCK_EXECUTE", "execute"],
|
||||||
|
"Execute in Terminal": ["STOCK_EXECUTE", "execute_in_terminal"]
|
||||||
|
},
|
||||||
|
"File Actions": {
|
||||||
|
"New": ["STOCK_ADD", "create"],
|
||||||
|
"Rename": ["STOCK_EDIT", "rename"],
|
||||||
|
"Cut": ["STOCK_CUT", "cut"],
|
||||||
|
"Copy": ["STOCK_COPY", "copy"],
|
||||||
|
"Paste": ["STOCK_PASTE", "paste"]
|
||||||
|
},
|
||||||
|
"Plugins": {}
|
||||||
|
}
|
|
@ -0,0 +1,47 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en" dir="ltr">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<title>Gtk + HTML + Python App</title>
|
||||||
|
<!-- Bootstrap CSS -->
|
||||||
|
<link rel="stylesheet" href="resources/css/libs/bootstrap5/bootstrap.min.css">
|
||||||
|
<link rel="stylesheet" href="resources/css/libs/bootstrap-icons/bootstrap-icons.css">
|
||||||
|
|
||||||
|
<!-- Site CSS -->
|
||||||
|
<!-- <link rel="stylesheet" href="resources/css/context-menu.css"> -->
|
||||||
|
<link rel="stylesheet" href="resources/css/main.css">
|
||||||
|
<link rel="stylesheet" href="resources/css/overrides.css">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div id="page-alert-zone" class="col">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col text-center scroller">
|
||||||
|
<button id="helloBttn" class=" btn btn-success">Button in WebView</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- For internal scripts... -->
|
||||||
|
<!-- <script src="js/libs/jquery-3.7.1.min.js"></script> -->
|
||||||
|
|
||||||
|
<!-- For Bootstrap... -->
|
||||||
|
<script src="resources/js/libs/bootstrap5/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!-- For Application... -->
|
||||||
|
<script src="resources/js/globals.js"></script>
|
||||||
|
|
||||||
|
<!-- <script src="resources/js/post-ajax.js"></script> -->
|
||||||
|
<!-- <script src="resources/js/ajax.js"></script> -->
|
||||||
|
|
||||||
|
<script src="resources/js/utils.js"></script>
|
||||||
|
<script src="resources/js/ui-logic.js"></script>
|
||||||
|
<script src="resources/js/events.js"></script>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,50 @@
|
||||||
|
.menu {
|
||||||
|
width: 165px;
|
||||||
|
z-index: 999;
|
||||||
|
box-shadow: 0 4px 5px 3px rgba(0, 0, 0, 0.2);
|
||||||
|
background-color: rgba(0, 0, 0, 0.64);
|
||||||
|
position: fixed;
|
||||||
|
display: none;
|
||||||
|
transition: 0.2s display ease-in;
|
||||||
|
}
|
||||||
|
.menu .menu-options {
|
||||||
|
list-style: none;
|
||||||
|
padding: 10px 0;
|
||||||
|
z-index: 1;
|
||||||
|
}
|
||||||
|
.menu .menu-options .menu-option {
|
||||||
|
font-weight: 500;
|
||||||
|
z-index: 1;
|
||||||
|
padding: 10px 40px 10px 20px;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.menu .menu-options .menu-option:hover {
|
||||||
|
background: rgba(255, 255, 255, 0.64);
|
||||||
|
color: rgba(0, 0, 0, 0.5);
|
||||||
|
}
|
||||||
|
|
||||||
|
button {
|
||||||
|
background: grey;
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
button .next {
|
||||||
|
color: green;
|
||||||
|
}
|
||||||
|
button[disabled="false"]:hover .next {
|
||||||
|
color: red;
|
||||||
|
animation: move 0.5s;
|
||||||
|
animation-iteration-count: 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes move {
|
||||||
|
from {
|
||||||
|
transform: translate(0%);
|
||||||
|
}
|
||||||
|
50% {
|
||||||
|
transform: translate(-40%);
|
||||||
|
}
|
||||||
|
to {
|
||||||
|
transform: transform(0%);
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,3 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-123" viewBox="0 0 16 16">
|
||||||
|
<path d="M2.873 11.297V4.142H1.699L0 5.379v1.137l1.64-1.18h.06v5.961h1.174Zm3.213-5.09v-.063c0-.618.44-1.169 1.196-1.169.676 0 1.174.44 1.174 1.106 0 .624-.42 1.101-.807 1.526L4.99 10.553v.744h4.78v-.99H6.643v-.069L8.41 8.252c.65-.724 1.237-1.332 1.237-2.27C9.646 4.849 8.723 4 7.308 4c-1.573 0-2.36 1.064-2.36 2.15v.057h1.138Zm6.559 1.883h.786c.823 0 1.374.481 1.379 1.179.01.707-.55 1.216-1.421 1.21-.77-.005-1.326-.419-1.379-.953h-1.095c.042 1.053.938 1.918 2.464 1.918 1.478 0 2.642-.839 2.62-2.144-.02-1.143-.922-1.651-1.551-1.714v-.063c.535-.09 1.347-.66 1.326-1.678-.026-1.053-.933-1.855-2.359-1.845-1.5.005-2.317.88-2.348 1.898h1.116c.032-.498.498-.944 1.206-.944.703 0 1.206.435 1.206 1.07.005.64-.504 1.106-1.2 1.106h-.75v.96Z"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 870 B |
|
@ -0,0 +1,3 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-activity" viewBox="0 0 16 16">
|
||||||
|
<path fill-rule="evenodd" d="M6 2a.5.5 0 0 1 .47.33L10 12.036l1.53-4.208A.5.5 0 0 1 12 7.5h3.5a.5.5 0 0 1 0 1h-3.15l-1.88 5.17a.5.5 0 0 1-.94 0L6 3.964 4.47 8.171A.5.5 0 0 1 4 8.5H.5a.5.5 0 0 1 0-1h3.15l1.88-5.17A.5.5 0 0 1 6 2Z"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 367 B |
|
@ -0,0 +1,3 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-alarm-fill" viewBox="0 0 16 16">
|
||||||
|
<path d="M6 .5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 0 1H9v1.07a7.001 7.001 0 0 1 3.274 12.474l.601.602a.5.5 0 0 1-.707.708l-.746-.746A6.97 6.97 0 0 1 8 16a6.97 6.97 0 0 1-3.422-.892l-.746.746a.5.5 0 0 1-.707-.708l.602-.602A7.001 7.001 0 0 1 7 2.07V1h-.5A.5.5 0 0 1 6 .5zm2.5 5a.5.5 0 0 0-1 0v3.362l-1.429 2.38a.5.5 0 1 0 .858.515l1.5-2.5A.5.5 0 0 0 8.5 9V5.5zM.86 5.387A2.5 2.5 0 1 1 4.387 1.86 8.035 8.035 0 0 0 .86 5.387zM11.613 1.86a2.5 2.5 0 1 1 3.527 3.527 8.035 8.035 0 0 0-3.527-3.527z"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 626 B |
|
@ -0,0 +1,4 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-alarm" viewBox="0 0 16 16">
|
||||||
|
<path d="M8.5 5.5a.5.5 0 0 0-1 0v3.362l-1.429 2.38a.5.5 0 1 0 .858.515l1.5-2.5A.5.5 0 0 0 8.5 9V5.5z"/>
|
||||||
|
<path d="M6.5 0a.5.5 0 0 0 0 1H7v1.07a7.001 7.001 0 0 0-3.273 12.474l-.602.602a.5.5 0 0 0 .707.708l.746-.746A6.97 6.97 0 0 0 8 16a6.97 6.97 0 0 0 3.422-.892l.746.746a.5.5 0 0 0 .707-.708l-.601-.602A7.001 7.001 0 0 0 9 2.07V1h.5a.5.5 0 0 0 0-1h-3zm1.038 3.018a6.093 6.093 0 0 1 .924 0 6 6 0 1 1-.924 0zM0 3.5c0 .753.333 1.429.86 1.887A8.035 8.035 0 0 1 4.387 1.86 2.5 2.5 0 0 0 0 3.5zM13.5 1c-.753 0-1.429.333-1.887.86a8.035 8.035 0 0 1 3.527 3.527A2.5 2.5 0 0 0 13.5 1z"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 711 B |
|
@ -0,0 +1,4 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-align-bottom" viewBox="0 0 16 16">
|
||||||
|
<rect width="4" height="12" x="6" y="1" rx="1"/>
|
||||||
|
<path d="M1.5 14a.5.5 0 0 0 0 1v-1zm13 1a.5.5 0 0 0 0-1v1zm-13 0h13v-1h-13v1z"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 271 B |
|
@ -0,0 +1,3 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-align-center" viewBox="0 0 16 16">
|
||||||
|
<path d="M8 1a.5.5 0 0 1 .5.5V6h-1V1.5A.5.5 0 0 1 8 1zm0 14a.5.5 0 0 1-.5-.5V10h1v4.5a.5.5 0 0 1-.5.5zM2 7a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V7z"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 315 B |
|
@ -0,0 +1,4 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-align-end" viewBox="0 0 16 16">
|
||||||
|
<path fill-rule="evenodd" d="M14.5 1a.5.5 0 0 0-.5.5v13a.5.5 0 0 0 1 0v-13a.5.5 0 0 0-.5-.5z"/>
|
||||||
|
<path d="M13 7a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V7z"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 318 B |
|
@ -0,0 +1,3 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-align-middle" viewBox="0 0 16 16">
|
||||||
|
<path d="M6 13a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1v10zM1 8a.5.5 0 0 0 .5.5H6v-1H1.5A.5.5 0 0 0 1 8zm14 0a.5.5 0 0 1-.5.5H10v-1h4.5a.5.5 0 0 1 .5.5z"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 316 B |
|
@ -0,0 +1,4 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-align-start" viewBox="0 0 16 16">
|
||||||
|
<path fill-rule="evenodd" d="M1.5 1a.5.5 0 0 1 .5.5v13a.5.5 0 0 1-1 0v-13a.5.5 0 0 1 .5-.5z"/>
|
||||||
|
<path d="M3 7a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V7z"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 318 B |
|
@ -0,0 +1,4 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-align-top" viewBox="0 0 16 16">
|
||||||
|
<rect width="4" height="12" rx="1" transform="matrix(1 0 0 -1 6 15)"/>
|
||||||
|
<path d="M1.5 2a.5.5 0 0 1 0-1v1zm13-1a.5.5 0 0 1 0 1V1zm-13 0h13v1h-13V1z"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 287 B |
|
@ -0,0 +1,3 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-alt" viewBox="0 0 16 16">
|
||||||
|
<path d="M1 13.5a.5.5 0 0 0 .5.5h3.797a.5.5 0 0 0 .439-.26L11 3h3.5a.5.5 0 0 0 0-1h-3.797a.5.5 0 0 0-.439.26L5 13H1.5a.5.5 0 0 0-.5.5zm10 0a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 0-1h-3a.5.5 0 0 0-.5.5z"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 326 B |
|
@ -0,0 +1,4 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-app-indicator" viewBox="0 0 16 16">
|
||||||
|
<path d="M5.5 2A3.5 3.5 0 0 0 2 5.5v5A3.5 3.5 0 0 0 5.5 14h5a3.5 3.5 0 0 0 3.5-3.5V8a.5.5 0 0 1 1 0v2.5a4.5 4.5 0 0 1-4.5 4.5h-5A4.5 4.5 0 0 1 1 10.5v-5A4.5 4.5 0 0 1 5.5 1H8a.5.5 0 0 1 0 1H5.5z"/>
|
||||||
|
<path d="M16 3a3 3 0 1 1-6 0 3 3 0 0 1 6 0z"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 387 B |
|
@ -0,0 +1,3 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-app" viewBox="0 0 16 16">
|
||||||
|
<path d="M11 2a3 3 0 0 1 3 3v6a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V5a3 3 0 0 1 3-3h6zM5 1a4 4 0 0 0-4 4v6a4 4 0 0 0 4 4h6a4 4 0 0 0 4-4V5a4 4 0 0 0-4-4H5z"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 282 B |
|
@ -0,0 +1,4 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-apple" viewBox="0 0 16 16">
|
||||||
|
<path d="M11.182.008C11.148-.03 9.923.023 8.857 1.18c-1.066 1.156-.902 2.482-.878 2.516.024.034 1.52.087 2.475-1.258.955-1.345.762-2.391.728-2.43zm3.314 11.733c-.048-.096-2.325-1.234-2.113-3.422.212-2.189 1.675-2.789 1.698-2.854.023-.065-.597-.79-1.254-1.157a3.692 3.692 0 0 0-1.563-.434c-.108-.003-.483-.095-1.254.116-.508.139-1.653.589-1.968.607-.316.018-1.256-.522-2.267-.665-.647-.125-1.333.131-1.824.328-.49.196-1.422.754-2.074 2.237-.652 1.482-.311 3.83-.067 4.56.244.729.625 1.924 1.273 2.796.576.984 1.34 1.667 1.659 1.899.319.232 1.219.386 1.843.067.502-.308 1.408-.485 1.766-.472.357.013 1.061.154 1.782.539.571.197 1.111.115 1.652-.105.541-.221 1.324-1.059 2.238-2.758.347-.79.505-1.217.473-1.282z"/>
|
||||||
|
<path d="M11.182.008C11.148-.03 9.923.023 8.857 1.18c-1.066 1.156-.902 2.482-.878 2.516.024.034 1.52.087 2.475-1.258.955-1.345.762-2.391.728-2.43zm3.314 11.733c-.048-.096-2.325-1.234-2.113-3.422.212-2.189 1.675-2.789 1.698-2.854.023-.065-.597-.79-1.254-1.157a3.692 3.692 0 0 0-1.563-.434c-.108-.003-.483-.095-1.254.116-.508.139-1.653.589-1.968.607-.316.018-1.256-.522-2.267-.665-.647-.125-1.333.131-1.824.328-.49.196-1.422.754-2.074 2.237-.652 1.482-.311 3.83-.067 4.56.244.729.625 1.924 1.273 2.796.576.984 1.34 1.667 1.659 1.899.319.232 1.219.386 1.843.067.502-.308 1.408-.485 1.766-.472.357.013 1.061.154 1.782.539.571.197 1.111.115 1.652-.105.541-.221 1.324-1.059 2.238-2.758.347-.79.505-1.217.473-1.282z"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
|
@ -0,0 +1,3 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-archive-fill" viewBox="0 0 16 16">
|
||||||
|
<path d="M12.643 15C13.979 15 15 13.845 15 12.5V5H1v7.5C1 13.845 2.021 15 3.357 15h9.286zM5.5 7h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1 0-1zM.8 1a.8.8 0 0 0-.8.8V3a.8.8 0 0 0 .8.8h14.4A.8.8 0 0 0 16 3V1.8a.8.8 0 0 0-.8-.8H.8z"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 359 B |
|
@ -0,0 +1,3 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-archive" viewBox="0 0 16 16">
|
||||||
|
<path d="M0 2a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1v7.5a2.5 2.5 0 0 1-2.5 2.5h-9A2.5 2.5 0 0 1 1 12.5V5a1 1 0 0 1-1-1V2zm2 3v7.5A1.5 1.5 0 0 0 3.5 14h9a1.5 1.5 0 0 0 1.5-1.5V5H2zm13-3H1v2h14V2zM5 7.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5z"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 401 B |
|
@ -0,0 +1,3 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-arrow-90deg-down" viewBox="0 0 16 16">
|
||||||
|
<path fill-rule="evenodd" d="M4.854 14.854a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L4 13.293V3.5A2.5 2.5 0 0 1 6.5 1h8a.5.5 0 0 1 0 1h-8A1.5 1.5 0 0 0 5 3.5v9.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4z"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 350 B |
|
@ -0,0 +1,3 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-arrow-90deg-left" viewBox="0 0 16 16">
|
||||||
|
<path fill-rule="evenodd" d="M1.146 4.854a.5.5 0 0 1 0-.708l4-4a.5.5 0 1 1 .708.708L2.707 4H12.5A2.5 2.5 0 0 1 15 6.5v8a.5.5 0 0 1-1 0v-8A1.5 1.5 0 0 0 12.5 5H2.707l3.147 3.146a.5.5 0 1 1-.708.708l-4-4z"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 349 B |
|
@ -0,0 +1,3 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-arrow-90deg-right" viewBox="0 0 16 16">
|
||||||
|
<path fill-rule="evenodd" d="M14.854 4.854a.5.5 0 0 0 0-.708l-4-4a.5.5 0 0 0-.708.708L13.293 4H3.5A2.5 2.5 0 0 0 1 6.5v8a.5.5 0 0 0 1 0v-8A1.5 1.5 0 0 1 3.5 5h9.793l-3.147 3.146a.5.5 0 0 0 .708.708l4-4z"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 350 B |
|
@ -0,0 +1,3 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-arrow-90deg-up" viewBox="0 0 16 16">
|
||||||
|
<path fill-rule="evenodd" d="M4.854 1.146a.5.5 0 0 0-.708 0l-4 4a.5.5 0 1 0 .708.708L4 2.707V12.5A2.5 2.5 0 0 0 6.5 15h8a.5.5 0 0 0 0-1h-8A1.5 1.5 0 0 1 5 12.5V2.707l3.146 3.147a.5.5 0 1 0 .708-.708l-4-4z"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 349 B |
|
@ -0,0 +1,3 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-arrow-bar-down" viewBox="0 0 16 16">
|
||||||
|
<path fill-rule="evenodd" d="M1 3.5a.5.5 0 0 1 .5-.5h13a.5.5 0 0 1 0 1h-13a.5.5 0 0 1-.5-.5zM8 6a.5.5 0 0 1 .5.5v5.793l2.146-2.147a.5.5 0 0 1 .708.708l-3 3a.5.5 0 0 1-.708 0l-3-3a.5.5 0 0 1 .708-.708L7.5 12.293V6.5A.5.5 0 0 1 8 6z"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 375 B |
|
@ -0,0 +1,3 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-arrow-bar-left" viewBox="0 0 16 16">
|
||||||
|
<path fill-rule="evenodd" d="M12.5 15a.5.5 0 0 1-.5-.5v-13a.5.5 0 0 1 1 0v13a.5.5 0 0 1-.5.5zM10 8a.5.5 0 0 1-.5.5H3.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L3.707 7.5H9.5a.5.5 0 0 1 .5.5z"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 375 B |
|
@ -0,0 +1,3 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-arrow-bar-right" viewBox="0 0 16 16">
|
||||||
|
<path fill-rule="evenodd" d="M6 8a.5.5 0 0 0 .5.5h5.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3a.5.5 0 0 0 0-.708l-3-3a.5.5 0 0 0-.708.708L12.293 7.5H6.5A.5.5 0 0 0 6 8zm-2.5 7a.5.5 0 0 1-.5-.5v-13a.5.5 0 0 1 1 0v13a.5.5 0 0 1-.5.5z"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 375 B |
|
@ -0,0 +1,3 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-arrow-bar-up" viewBox="0 0 16 16">
|
||||||
|
<path fill-rule="evenodd" d="M8 10a.5.5 0 0 0 .5-.5V3.707l2.146 2.147a.5.5 0 0 0 .708-.708l-3-3a.5.5 0 0 0-.708 0l-3 3a.5.5 0 1 0 .708.708L7.5 3.707V9.5a.5.5 0 0 0 .5.5zm-7 2.5a.5.5 0 0 1 .5-.5h13a.5.5 0 0 1 0 1h-13a.5.5 0 0 1-.5-.5z"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 376 B |
|
@ -0,0 +1,4 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-arrow-clockwise" viewBox="0 0 16 16">
|
||||||
|
<path fill-rule="evenodd" d="M8 3a5 5 0 1 0 4.546 2.914.5.5 0 0 1 .908-.417A6 6 0 1 1 8 2v1z"/>
|
||||||
|
<path d="M8 4.466V.534a.25.25 0 0 1 .41-.192l2.36 1.966c.12.1.12.284 0 .384L8.41 4.658A.25.25 0 0 1 8 4.466z"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 352 B |
|
@ -0,0 +1,4 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-arrow-counterclockwise" viewBox="0 0 16 16">
|
||||||
|
<path fill-rule="evenodd" d="M8 3a5 5 0 1 1-4.546 2.914.5.5 0 0 0-.908-.417A6 6 0 1 0 8 2v1z"/>
|
||||||
|
<path d="M8 4.466V.534a.25.25 0 0 0-.41-.192L5.23 2.308a.25.25 0 0 0 0 .384l2.36 1.966A.25.25 0 0 0 8 4.466z"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 359 B |
|
@ -0,0 +1,3 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-arrow-down-circle-fill" viewBox="0 0 16 16">
|
||||||
|
<path d="M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8.5 4.5a.5.5 0 0 0-1 0v5.793L5.354 8.146a.5.5 0 1 0-.708.708l3 3a.5.5 0 0 0 .708 0l3-3a.5.5 0 0 0-.708-.708L8.5 10.293V4.5z"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 321 B |
|
@ -0,0 +1,3 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-arrow-down-circle" viewBox="0 0 16 16">
|
||||||
|
<path fill-rule="evenodd" d="M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8zm15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8.5 4.5a.5.5 0 0 0-1 0v5.793L5.354 8.146a.5.5 0 1 0-.708.708l3 3a.5.5 0 0 0 .708 0l3-3a.5.5 0 0 0-.708-.708L8.5 10.293V4.5z"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 370 B |
|
@ -0,0 +1,3 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-arrow-down-left-circle-fill" viewBox="0 0 16 16">
|
||||||
|
<path d="M16 8A8 8 0 1 0 0 8a8 8 0 0 0 16 0zm-5.904-2.803a.5.5 0 1 1 .707.707L6.707 10h2.768a.5.5 0 0 1 0 1H5.5a.5.5 0 0 1-.5-.5V6.525a.5.5 0 0 1 1 0v2.768l4.096-4.096z"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 326 B |
|
@ -0,0 +1,3 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-arrow-down-left-circle" viewBox="0 0 16 16">
|
||||||
|
<path fill-rule="evenodd" d="M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8zm15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-5.904-2.854a.5.5 0 1 1 .707.708L6.707 9.95h2.768a.5.5 0 1 1 0 1H5.5a.5.5 0 0 1-.5-.5V6.475a.5.5 0 1 1 1 0v2.768l4.096-4.097z"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 377 B |
|
@ -0,0 +1,3 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-arrow-down-left-square-fill" viewBox="0 0 16 16">
|
||||||
|
<path d="M2 16a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2zm8.096-10.803L6 9.293V6.525a.5.5 0 0 0-1 0V10.5a.5.5 0 0 0 .5.5h3.975a.5.5 0 0 0 0-1H6.707l4.096-4.096a.5.5 0 1 0-.707-.707z"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 363 B |
|
@ -0,0 +1,3 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-arrow-down-left-square" viewBox="0 0 16 16">
|
||||||
|
<path fill-rule="evenodd" d="M15 2a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V2zM0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V2zm10.096 3.146a.5.5 0 1 1 .707.708L6.707 9.95h2.768a.5.5 0 1 1 0 1H5.5a.5.5 0 0 1-.5-.5V6.475a.5.5 0 1 1 1 0v2.768l4.096-4.097z"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 451 B |