Fixed #405
This commit is contained in:
parent
d89e6e24ee
commit
8651607925
@ -27,17 +27,20 @@ pakitheme() {
|
||||
local repo_dir="$root_dir/repo"
|
||||
local build_dir="$root_dir/build"
|
||||
|
||||
prompt -i "Converting theme: $FLATPAK_THEME"
|
||||
|
||||
for location in "$data_home/themes" "$HOME/.themes" /usr/share/themes; do
|
||||
if [[ -d "$location/$FLATPAK_THEME" ]]; then
|
||||
prompt -s "Found theme located at: $location/$FLATPAK_THEME"
|
||||
prompt -s "Found theme located at: $location/$FLATPAK_THEME \n"
|
||||
theme_path="$location/$FLATPAK_THEME"
|
||||
break
|
||||
fi
|
||||
done
|
||||
|
||||
[[ -n "$theme_path" ]] || die 'Could not locate theme.'
|
||||
if [[ -n "$theme_path" ]]; then
|
||||
prompt -i "Converting theme: $FLATPAK_THEME... \n"
|
||||
else
|
||||
prompt -e "Could not locate theme... install theme first! \n"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
rm -rf "$root_dir" "$repo_dir"
|
||||
mkdir -p "$repo_dir"
|
||||
|
@ -671,22 +671,24 @@ install_dash_to_dock_theme() {
|
||||
|
||||
if [[ -d "${DASH_TO_DOCK_DIR_HOME}" ]]; then
|
||||
backup_file "${DASH_TO_DOCK_DIR_HOME}/stylesheet.css" "udo"
|
||||
udoify_file "${DASH_TO_DOCK_DIR_HOME}/stylesheet.css"
|
||||
udo sassc ${SASSC_OPT} "${DASH_TO_DOCK_SRC_DIR}/stylesheet$(destify ${colors[0]}).scss" "${DASH_TO_DOCK_DIR_HOME}/stylesheet.css"
|
||||
udoify_file "${DASH_TO_DOCK_DIR_HOME}/stylesheet.css"
|
||||
if [[ "${GNOME_VERSION}" == 'new' ]]; then
|
||||
udo sassc ${SASSC_OPT} "${DASH_TO_DOCK_SRC_DIR}/stylesheet-40.scss" "${DASH_TO_DOCK_DIR_HOME}/stylesheet.css"
|
||||
else
|
||||
udo sassc ${SASSC_OPT} "${DASH_TO_DOCK_SRC_DIR}/stylesheet$(destify ${colors[0]}).scss" "${DASH_TO_DOCK_DIR_HOME}/stylesheet.css"
|
||||
fi
|
||||
elif [[ -d "${DASH_TO_DOCK_DIR_ROOT}" ]]; then
|
||||
backup_file "${DASH_TO_DOCK_DIR_ROOT}/stylesheet.css" "sudo"
|
||||
sudo sassc ${SASSC_OPT} "${DASH_TO_DOCK_SRC_DIR}/stylesheet$(destify ${colors[0]}).scss" "${DASH_TO_DOCK_DIR_ROOT}/stylesheet.css"
|
||||
if [[ "${GNOME_VERSION}" == 'new' ]]; then
|
||||
sudo sassc ${SASSC_OPT} "${DASH_TO_DOCK_SRC_DIR}/stylesheet-40.scss" "${DASH_TO_DOCK_DIR_ROOT}/stylesheet.css"
|
||||
else
|
||||
sudo sassc ${SASSC_OPT} "${DASH_TO_DOCK_SRC_DIR}/stylesheet$(destify ${colors[0]}).scss" "${DASH_TO_DOCK_DIR_ROOT}/stylesheet.css"
|
||||
fi
|
||||
fi
|
||||
|
||||
udo dbus-launch dconf write /org/gnome/shell/extensions/dash-to-dock/apply-custom-theme true
|
||||
}
|
||||
|
||||
revert_dash_to_dock() {
|
||||
if [[ -d "${DASH_TO_DOCK_DIR_HOME}.bak" ]]; then
|
||||
restore_file "${DASH_TO_DOCK_DIR_HOME}" "udo"
|
||||
fi
|
||||
}
|
||||
|
||||
revert_dash_to_dock_theme() {
|
||||
if [[ -d "${DASH_TO_DOCK_DIR_HOME}" ]]; then
|
||||
restore_file "${DASH_TO_DOCK_DIR_HOME}/stylesheet.css" "udo"
|
||||
|
334
src/other/dash-to-dock/_dash-to-dock-4.scss
Normal file
334
src/other/dash-to-dock/_dash-to-dock-4.scss
Normal file
@ -0,0 +1,334 @@
|
||||
|
||||
$dash_background_color: if($variant == 'light', rgba($panel_bg, $panel_opacity), rgba($panel_bg, $panel_opacity + 0.1));
|
||||
$dash_placeholder_size: 32px;
|
||||
$dash_padding: $base_padding + 4px; // 10px
|
||||
$dash_spacing: round($base_padding / 4);
|
||||
$dash_bottom_margin: $base_margin * 4;
|
||||
$dash_border_radius: $dash_radius;
|
||||
|
||||
// Stock
|
||||
$dock_side_margin: $dash_bottom_margin / 4;
|
||||
$dock_fixed_inner_margin: $dock_side_margin;
|
||||
|
||||
// Adapted to $dock_bottom_margin
|
||||
|
||||
@function shrink($val) {
|
||||
@return round($val / 4);
|
||||
}
|
||||
|
||||
@function opposite($val) {
|
||||
@return map-get(
|
||||
(
|
||||
left: right,
|
||||
right: left,
|
||||
top: bottom,
|
||||
bottom: top,
|
||||
),
|
||||
$val
|
||||
);
|
||||
}
|
||||
|
||||
$osd_fg_color: #eeeeec;
|
||||
|
||||
@each $side in bottom, top, left, right {
|
||||
#dashtodockContainer.#{$side} {
|
||||
#dash {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
padding-#{$side}: $dash_padding;
|
||||
padding-#{opposite($side)}: $dash_padding;
|
||||
|
||||
.dash-background {
|
||||
margin: 0;
|
||||
margin-#{$side}: $dock_side_margin;
|
||||
padding: $dash_padding;
|
||||
}
|
||||
|
||||
.dash-separator {
|
||||
@if $side == top or $side == bottom {
|
||||
margin-bottom: 0;
|
||||
} @else {
|
||||
height: 1px;
|
||||
margin: ($dash_spacing + ($dash_padding / 2)) 0;
|
||||
background-color: transparentize($osd_fg_color, 0.7);
|
||||
}
|
||||
}
|
||||
|
||||
.dash-item-container {
|
||||
.app-well-app,
|
||||
.show-apps {
|
||||
padding: $dash_spacing;
|
||||
padding-#{$side}: $dash_padding + $dock_side_margin;
|
||||
padding-#{opposite($side)}: $dash_padding;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&.shrink {
|
||||
#dash {
|
||||
.dash-background {
|
||||
margin-#{$side}: shrink($dock_side_margin);
|
||||
padding: shrink($dash_padding);
|
||||
border-radius: $dash_border_radius - $dash_padding + shrink($dash_padding);
|
||||
}
|
||||
|
||||
#dashtodockDashContainer {
|
||||
padding: shrink($dash_padding);
|
||||
}
|
||||
|
||||
.dash-item-container {
|
||||
.app-well-app,
|
||||
.show-apps {
|
||||
padding: shrink($dash_spacing);
|
||||
padding-#{$side}: shrink($dash_padding + $dock_side_margin);
|
||||
padding-#{opposite($side)}: shrink($dash_padding);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&.fixed {
|
||||
#dash {
|
||||
.dash-background {
|
||||
margin-#{opposite($side)}: shrink($dock_fixed_inner_margin);
|
||||
}
|
||||
|
||||
.dash-item-container {
|
||||
.app-well-app,
|
||||
.show-apps {
|
||||
padding-#{opposite($side)}: shrink($dash_padding + $dock_fixed_inner_margin);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&.fixed {
|
||||
#dash {
|
||||
.dash-background {
|
||||
margin-#{opposite($side)}: $dock_fixed_inner_margin;
|
||||
}
|
||||
|
||||
.dash-item-container {
|
||||
.app-well-app,
|
||||
.show-apps {
|
||||
padding-#{opposite($side)}: $dash_padding + $dock_fixed_inner_margin;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@each $side in bottom, top, left, right {
|
||||
#dashtodockContainer.extended.#{$side} {
|
||||
#dash {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
|
||||
.dash-background {
|
||||
margin: 0;
|
||||
margin-#{$side}: 0 !important;
|
||||
border-radius: 0;
|
||||
padding: 0;
|
||||
padding-#{$side}: $dash_padding;
|
||||
padding-#{opposite($side)}: $dash_padding;
|
||||
}
|
||||
|
||||
#dashtodockDashContainer {
|
||||
padding: $dash_padding;
|
||||
padding-#{$side}: 0;
|
||||
padding-#{opposite($side)}: 0;
|
||||
}
|
||||
|
||||
.dash-item-container {
|
||||
.app-well-app,
|
||||
.show-apps {
|
||||
padding: $dash_spacing;
|
||||
padding-#{$side}: $dash_padding;
|
||||
padding-#{opposite($side)}: $dash_padding;
|
||||
}
|
||||
|
||||
.show-apps {
|
||||
@if $side == top or $side == bottom {
|
||||
margin-left: $dash_padding;
|
||||
} @else {
|
||||
margin-top: $dash_padding;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&.shrink {
|
||||
#dash {
|
||||
.dash-background {
|
||||
margin: 0;
|
||||
margin-#{$side}: 0 !important;
|
||||
border-radius: 0;
|
||||
padding: 0;
|
||||
padding-#{$side}: shrink($dash_padding - $dash_spacing);
|
||||
padding-#{opposite($side)}: shrink($dash_padding - $dash_spacing);
|
||||
}
|
||||
|
||||
#dashtodockDashContainer {
|
||||
padding: shrink($dash_padding - $dash_spacing);
|
||||
padding-#{$side}: 0;
|
||||
padding-#{opposite($side)}: 0;
|
||||
}
|
||||
|
||||
.dash-item-container {
|
||||
.app-well-app,
|
||||
.show-apps {
|
||||
padding: shrink($dash_spacing);
|
||||
padding-#{$side}: shrink($dash_padding);
|
||||
padding-#{opposite($side)}: shrink($dash_padding);
|
||||
}
|
||||
|
||||
.show-apps {
|
||||
@if $side == top or $side == bottom {
|
||||
margin-left: shrink($dash_spacing);
|
||||
} @else {
|
||||
margin-top: shrink($dash_spacing);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&.shrink.fixed {
|
||||
#dash {
|
||||
.dash-background {
|
||||
margin-#{opposite($side)}: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#dashtodockContainer.top.shrink #dash .dash-background {
|
||||
margin-top: 4px;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
#dashtodockContainer.straight-corner #dash .dash-background,
|
||||
#dashtodockContainer.shrink.straight-corner #dash .dash-background {
|
||||
border-radius: 0px;
|
||||
}
|
||||
|
||||
/* Scrollview style */
|
||||
.bottom #dashtodockDashScrollview,
|
||||
.top #dashtodockDashScrollview {
|
||||
-st-hfade-offset: 24px;
|
||||
}
|
||||
|
||||
.left #dashtodockDashScrollview,
|
||||
.right #dashtodockDashScrollview {
|
||||
-st-vfade-offset: 24px;
|
||||
}
|
||||
|
||||
#dashtodockContainer.running-dots .dash-item-container > StButton,
|
||||
#dashtodockContainer.dashtodock .dash-item-container > StButton {
|
||||
transition-duration: 250;
|
||||
background-size: contain;
|
||||
}
|
||||
|
||||
/* Running and focused application style */
|
||||
|
||||
#dashtodockContainer.running-dots .app-well-app.running > .overview-icon,
|
||||
#dashtodockContainer.dashtodock .app-well-app.running > .overview-icon {
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
#dashtodockContainer.running-dots .app-well-app.focused .overview-icon,
|
||||
#dashtodockContainer.dashtodock .app-well-app.focused .overview-icon {
|
||||
background-color: rgba(238, 238, 236, 0.2);
|
||||
}
|
||||
|
||||
#dashtodockContainer.dashtodock #dash .dash-background {
|
||||
background: #2e3436;
|
||||
}
|
||||
|
||||
#dashtodockContainer.dashtodock .progress-bar {
|
||||
/* Customization of the progress bar style, e.g.:
|
||||
-progress-bar-background: rgba(0.8, 0.8, 0.8, 1);
|
||||
-progress-bar-border: rgba(0.9, 0.9, 0.9, 1);
|
||||
*/
|
||||
}
|
||||
|
||||
#dashtodockContainer.top #dash .placeholder,
|
||||
#dashtodockContainer.bottom #dash .placeholder {
|
||||
width: 32px;
|
||||
height: 1px;
|
||||
}
|
||||
|
||||
/*
|
||||
* This is applied to a dummy actor. Only the alpha value for the background and border color
|
||||
* and the transition-duration are used
|
||||
*/
|
||||
#dashtodockContainer.dummy-opaque {
|
||||
background-color: rgba(0, 0, 0, 0.8);
|
||||
border-color: rgba(0, 0, 0, 0.4);
|
||||
transition-duration: 300ms;
|
||||
}
|
||||
|
||||
/*
|
||||
* This is applied to a dummy actor. Only the alpha value for the background and border color
|
||||
* and the transition-duration are used
|
||||
*/
|
||||
#dashtodockContainer.dummy-transparent {
|
||||
background-color: rgba(0, 0, 0, 0.2);
|
||||
border-color: rgba(0, 0, 0, 0.1);
|
||||
transition-duration: 500ms;
|
||||
}
|
||||
|
||||
#dashtodockContainer .number-overlay {
|
||||
color: rgba(255, 255, 255, 1);
|
||||
background-color: rgba(0, 0, 0, 0.8);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#dashtodockContainer .notification-badge {
|
||||
color: rgba(255, 255, 255, 1);
|
||||
background-color: rgba(255, 0, 0, 1);
|
||||
padding: 0.2em 0.5em;
|
||||
border-radius: 1em;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
margin: 2px;
|
||||
}
|
||||
|
||||
#dashtodockPreviewSeparator.popup-separator-menu-item-horizontal {
|
||||
width: 1px;
|
||||
height: auto;
|
||||
border-right-width: 1px;
|
||||
margin: 32px 0px;
|
||||
}
|
||||
|
||||
.dashtodock-app-well-preview-menu-item {
|
||||
padding: 1em 1em 0.5em 1em;
|
||||
}
|
||||
|
||||
#dashtodockContainer .metro .overview-icon {
|
||||
border-radius: 0px;
|
||||
}
|
||||
|
||||
#dashtodockContainer.bottom .metro.running2.focused,
|
||||
#dashtodockContainer.bottom .metro.running3.focused,
|
||||
#dashtodockContainer.bottom .metro.running4.focused,
|
||||
#dashtodockContainer.top .metro.running2.focused,
|
||||
#dashtodockContainer.top .metro.running3.focused,
|
||||
#dashtodockContainer.top .metro.running4.focused {
|
||||
background-image: url("./media/highlight_stacked_bg.svg");
|
||||
background-position: 0px 0px;
|
||||
background-size: contain;
|
||||
}
|
||||
|
||||
#dashtodockContainer.left .metro.running2.focused,
|
||||
#dashtodockContainer.left .metro.running3.focused,
|
||||
#dashtodockContainer.left .metro.running4.focused,
|
||||
#dashtodockContainer.right .metro.running2.focused,
|
||||
#dashtodockContainer.right .metro.running3.focused,
|
||||
#dashtodockContainer.right .metro.running4.focused {
|
||||
background-image: url("./media/highlight_stacked_bg_h.svg");
|
||||
background-position: 0px 0px;
|
||||
background-size: contain;
|
||||
}
|
@ -1,339 +0,0 @@
|
||||
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.
|
@ -1,45 +0,0 @@
|
||||
# Dash to Dock
|
||||

|
||||
|
||||
## A dock for the GNOME Shell
|
||||
This extension enhances the dash moving it out of the overview and transforming it in a dock for an easier launching of applications and a faster switching between windows and desktops without having to leave the desktop view.
|
||||
|
||||
[<img src="https://micheleg.github.io/dash-to-dock/media/get-it-on-ego.png" height="100">](https://extensions.gnome.org/extension/307/dash-to-dock)
|
||||
|
||||
For additional installation instructions and more information visit [https://micheleg.github.io/dash-to-dock/](https://micheleg.github.io/dash-to-dock/).
|
||||
|
||||
## Installation from source
|
||||
|
||||
The extension can be installed directly from source, either for the convenience of using git or to test the latest development version. Clone the desired branch with git
|
||||
|
||||
### Build Dependencies
|
||||
|
||||
To compile the stylesheet you'll need an implementation of SASS. Dash to Dock supports `dart-sass` (`sass`), `sassc`, and `ruby-sass`. Every distro should have at least one of these implementations, we recommend using `dart-sass` (`sass`) or `sassc` over `ruby-sass` as `ruby-sass` is deprecated.
|
||||
|
||||
By default, Dash to Dock will attempt to build with `dart-sass`. To change this behavior set the `SASS` environment variable to either `sassc` or `ruby`.
|
||||
|
||||
```bash
|
||||
export SASS=sassc
|
||||
# or...
|
||||
export SASS=ruby
|
||||
```
|
||||
|
||||
### Building
|
||||
|
||||
Clone the repository or download the branch from github. A simple Makefile is included.
|
||||
|
||||
Next use `make` to install the extension into your home directory. A Shell reload is required `Alt+F2 r Enter` under Xorg or under Wayland you may have to logout and login. The extension has to be enabled with *gnome-extensions-app* (GNOME Extensions) or with *dconf*.
|
||||
|
||||
```bash
|
||||
git clone https://github.com/micheleg/dash-to-dock.git
|
||||
make
|
||||
make install
|
||||
```
|
||||
|
||||
## Bug Reporting
|
||||
|
||||
Bugs should be reported to the Github bug tracker [https://github.com/micheleg/dash-to-dock/issues](https://github.com/micheleg/dash-to-dock/issues).
|
||||
|
||||
## License
|
||||
Dash to Dock Gnome Shell extension is distributed under the terms of the GNU General Public License,
|
||||
version 2 or later. See the COPYING file for details.
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,274 +0,0 @@
|
||||
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
|
||||
|
||||
const Atk = imports.gi.Atk;
|
||||
const Clutter = imports.gi.Clutter;
|
||||
let Dbusmenu = null; /* Dynamically imported */
|
||||
const Gio = imports.gi.Gio;
|
||||
const GLib = imports.gi.GLib;
|
||||
const St = imports.gi.St;
|
||||
|
||||
const PopupMenu = imports.ui.popupMenu;
|
||||
|
||||
const Me = imports.misc.extensionUtils.getCurrentExtension();
|
||||
const Utils = Me.imports.utils;
|
||||
|
||||
// Dbusmenu features not (yet) supported:
|
||||
//
|
||||
// * The CHILD_DISPLAY property
|
||||
//
|
||||
// This seems to have only one possible value in the Dbusmenu API, so
|
||||
// there's little point in depending on it--the code in libdbusmenu sets it
|
||||
// if and only if an item has children, so for our purposes it's simpler
|
||||
// and more intuitive to just check children.length. (This does ignore the
|
||||
// possibility of a program not using libdbusmenu and setting CHILD_DISPLAY
|
||||
// independently, perhaps to indicate that an childless menu item should
|
||||
// nevertheless be displayed like a submenu.)
|
||||
//
|
||||
// * Children more than two levels deep
|
||||
//
|
||||
// PopupMenu doesn't seem to support submenus in submenus.
|
||||
//
|
||||
// * Shortcut keys
|
||||
//
|
||||
// If these keys are supposed to be installed as global shortcuts, we'd
|
||||
// have to query these aggressively and not wait for the DBus menu to be
|
||||
// mapped to a popup menu. A shortcut key that only works once the popup
|
||||
// menu is open and has key focus is possibly of marginal value.
|
||||
|
||||
function haveDBusMenu() {
|
||||
if (Dbusmenu)
|
||||
return Dbusmenu;
|
||||
|
||||
try {
|
||||
Dbusmenu = imports.gi.Dbusmenu;
|
||||
return Dbusmenu;
|
||||
} catch (e) {
|
||||
log(`Failed to import DBusMenu, quicklists are not avaialble: ${e}`);
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
function makePopupMenuItem(dbusmenuItem, deep) {
|
||||
// These are the only properties guaranteed to be available when the root
|
||||
// item is first announced. Other properties might be loaded already, but
|
||||
// be sure to connect to Dbusmenu.MENUITEM_SIGNAL_PROPERTY_CHANGED to get
|
||||
// the most up-to-date values in case they aren't.
|
||||
const itemType = dbusmenuItem.property_get(Dbusmenu.MENUITEM_PROP_TYPE);
|
||||
const label = dbusmenuItem.property_get(Dbusmenu.MENUITEM_PROP_LABEL);
|
||||
const visible = dbusmenuItem.property_get_bool(Dbusmenu.MENUITEM_PROP_VISIBLE);
|
||||
const enabled = dbusmenuItem.property_get_bool(Dbusmenu.MENUITEM_PROP_ENABLED);
|
||||
const accessibleDesc = dbusmenuItem.property_get(Dbusmenu.MENUITEM_PROP_ACCESSIBLE_DESC);
|
||||
//const childDisplay = dbusmenuItem.property_get(Dbusmenu.MENUITEM_PROP_CHILD_DISPLAY);
|
||||
|
||||
let item;
|
||||
const signalsHandler = new Utils.GlobalSignalsHandler();
|
||||
const wantIcon = itemType === Dbusmenu.CLIENT_TYPES_IMAGE;
|
||||
|
||||
// If the basic type of the menu item needs to change, call this.
|
||||
const recreateItem = () => {
|
||||
const newItem = makePopupMenuItem(dbusmenuItem, deep);
|
||||
const parentMenu = item._parent;
|
||||
parentMenu.addMenuItem(newItem);
|
||||
// Reminder: Clutter thinks of later entries in the child list as
|
||||
// "above" earlier ones, so "above" here means "below" in terms of the
|
||||
// menu's vertical order.
|
||||
parentMenu.actor.set_child_above_sibling(newItem.actor, item.actor);
|
||||
if (newItem.menu) {
|
||||
parentMenu.actor.set_child_above_sibling(newItem.menu.actor, newItem.actor);
|
||||
}
|
||||
parentMenu.actor.remove_child(item.actor);
|
||||
item.destroy();
|
||||
item = null;
|
||||
};
|
||||
|
||||
const updateDisposition = () => {
|
||||
const disposition = dbusmenuItem.property_get(Dbusmenu.MENUITEM_PROP_DISPOSITION);
|
||||
let icon_name = null;
|
||||
switch (disposition) {
|
||||
case Dbusmenu.MENUITEM_DISPOSITION_ALERT:
|
||||
case Dbusmenu.MENUITEM_DISPOSITION_WARNING:
|
||||
icon_name = 'dialog-warning-symbolic';
|
||||
break;
|
||||
case Dbusmenu.MENUITEM_DISPOSITION_INFORMATIVE:
|
||||
icon_name = 'dialog-information-symbolic';
|
||||
break;
|
||||
}
|
||||
if (icon_name) {
|
||||
item._dispositionIcon = new St.Icon({
|
||||
icon_name,
|
||||
style_class: 'popup-menu-icon',
|
||||
y_align: Clutter.ActorAlign.CENTER,
|
||||
y_expand: true,
|
||||
});
|
||||
let expander;
|
||||
for (let child = item.label.get_next_sibling();; child = child.get_next_sibling()) {
|
||||
if (!child) {
|
||||
expander = new St.Bin({
|
||||
style_class: 'popup-menu-item-expander',
|
||||
x_expand: true,
|
||||
});
|
||||
item.actor.add_child(expander);
|
||||
break;
|
||||
} else if (child instanceof St.Widget && child.has_style_class_name('popup-menu-item-expander')) {
|
||||
expander = child;
|
||||
break;
|
||||
}
|
||||
}
|
||||
item.actor.insert_child_above(item._dispositionIcon, expander);
|
||||
} else if (item._dispositionIcon) {
|
||||
item.actor.remove_child(item._dispositionIcon);
|
||||
item._dispositionIcon = null;
|
||||
}
|
||||
};
|
||||
|
||||
const updateIcon = () => {
|
||||
if (!wantIcon) {
|
||||
return;
|
||||
}
|
||||
const iconData = dbusmenuItem.property_get_byte_array(Dbusmenu.MENUITEM_PROP_ICON_DATA);
|
||||
const iconName = dbusmenuItem.property_get(Dbusmenu.MENUITEM_PROP_ICON_NAME);
|
||||
if (iconName) {
|
||||
item.icon.icon_name = iconName;
|
||||
} else if (iconData.length) {
|
||||
item.icon.gicon = Gio.BytesIcon.new(iconData);
|
||||
}
|
||||
};
|
||||
|
||||
const updateOrnament = () => {
|
||||
const toggleType = dbusmenuItem.property_get(Dbusmenu.MENUITEM_PROP_TOGGLE_TYPE);
|
||||
switch (toggleType) {
|
||||
case Dbusmenu.MENUITEM_TOGGLE_CHECK:
|
||||
item.actor.accessible_role = Atk.Role.CHECK_MENU_ITEM;
|
||||
break;
|
||||
case Dbusmenu.MENUITEM_TOGGLE_RADIO:
|
||||
item.actor.accessible_role = Atk.Role.RADIO_MENU_ITEM;
|
||||
break;
|
||||
default:
|
||||
item.actor.accessible_role = Atk.Role.MENU_ITEM;
|
||||
}
|
||||
let ornament = PopupMenu.Ornament.NONE;
|
||||
const state = dbusmenuItem.property_get_int(Dbusmenu.MENUITEM_PROP_TOGGLE_STATE);
|
||||
if (state === Dbusmenu.MENUITEM_TOGGLE_STATE_UNKNOWN) {
|
||||
// PopupMenu doesn't natively support an "unknown" ornament, but we
|
||||
// can hack one in:
|
||||
item.setOrnament(ornament);
|
||||
item.actor.add_accessible_state(Atk.StateType.INDETERMINATE);
|
||||
item._ornamentLabel.text = '\u2501';
|
||||
item.actor.remove_style_pseudo_class('checked');
|
||||
} else {
|
||||
item.actor.remove_accessible_state(Atk.StateType.INDETERMINATE);
|
||||
if (state === Dbusmenu.MENUITEM_TOGGLE_STATE_CHECKED) {
|
||||
if (toggleType === Dbusmenu.MENUITEM_TOGGLE_CHECK) {
|
||||
ornament = PopupMenu.Ornament.CHECK;
|
||||
} else if (toggleType === Dbusmenu.MENUITEM_TOGGLE_RADIO) {
|
||||
ornament = PopupMenu.Ornament.DOT;
|
||||
}
|
||||
item.actor.add_style_pseudo_class('checked');
|
||||
} else {
|
||||
item.actor.remove_style_pseudo_class('checked');
|
||||
}
|
||||
item.setOrnament(ornament);
|
||||
}
|
||||
};
|
||||
|
||||
const onPropertyChanged = (dbusmenuItem, name, value) => {
|
||||
// `value` is null when a property is cleared, so handle those cases
|
||||
// with sensible defaults.
|
||||
switch (name) {
|
||||
case Dbusmenu.MENUITEM_PROP_TYPE:
|
||||
recreateItem();
|
||||
break;
|
||||
case Dbusmenu.MENUITEM_PROP_ENABLED:
|
||||
item.setSensitive(value ? value.unpack() : false);
|
||||
break;
|
||||
case Dbusmenu.MENUITEM_PROP_LABEL:
|
||||
item.label.text = value ? value.unpack() : '';
|
||||
break;
|
||||
case Dbusmenu.MENUITEM_PROP_VISIBLE:
|
||||
item.actor.visible = value ? value.unpack() : false;
|
||||
break;
|
||||
case Dbusmenu.MENUITEM_PROP_DISPOSITION:
|
||||
updateDisposition();
|
||||
break;
|
||||
case Dbusmenu.MENUITEM_PROP_ACCESSIBLE_DESC:
|
||||
item.actor.get_accessible().accessible_description = value && value.unpack() || '';
|
||||
break;
|
||||
case Dbusmenu.MENUITEM_PROP_ICON_DATA:
|
||||
case Dbusmenu.MENUITEM_PROP_ICON_NAME:
|
||||
updateIcon();
|
||||
break;
|
||||
case Dbusmenu.MENUITEM_PROP_TOGGLE_TYPE:
|
||||
case Dbusmenu.MENUITEM_PROP_TOGGLE_STATE:
|
||||
updateOrnament();
|
||||
break;
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
// Start actually building the menu item.
|
||||
const children = dbusmenuItem.get_children();
|
||||
if (children.length && !deep) {
|
||||
// Make a submenu.
|
||||
item = new PopupMenu.PopupSubMenuMenuItem(label, wantIcon);
|
||||
const updateChildren = () => {
|
||||
const children = dbusmenuItem.get_children();
|
||||
if (!children.length) {
|
||||
return recreateItem();
|
||||
}
|
||||
item.menu.removeAll();
|
||||
children.forEach(remoteChild =>
|
||||
item.menu.addMenuItem(makePopupMenuItem(remoteChild, true)));
|
||||
};
|
||||
updateChildren();
|
||||
signalsHandler.add(
|
||||
[dbusmenuItem, Dbusmenu.MENUITEM_SIGNAL_CHILD_ADDED, updateChildren],
|
||||
[dbusmenuItem, Dbusmenu.MENUITEM_SIGNAL_CHILD_MOVED, updateChildren],
|
||||
[dbusmenuItem, Dbusmenu.MENUITEM_SIGNAL_CHILD_REMOVED, updateChildren]);
|
||||
|
||||
} else {
|
||||
// Don't make a submenu.
|
||||
if (!deep) {
|
||||
// We only have the potential to get a submenu if we aren't deep.
|
||||
signalsHandler.add(
|
||||
[dbusmenuItem, Dbusmenu.MENUITEM_SIGNAL_CHILD_ADDED, recreateItem],
|
||||
[dbusmenuItem, Dbusmenu.MENUITEM_SIGNAL_CHILD_MOVED, recreateItem],
|
||||
[dbusmenuItem, Dbusmenu.MENUITEM_SIGNAL_CHILD_REMOVED, recreateItem]);
|
||||
}
|
||||
|
||||
if (itemType === Dbusmenu.CLIENT_TYPES_SEPARATOR) {
|
||||
item = new PopupMenu.PopupSeparatorMenuItem();
|
||||
} else if (wantIcon) {
|
||||
item = new PopupMenu.PopupImageMenuItem(label, null);
|
||||
item.icon = item._icon;
|
||||
} else {
|
||||
item = new PopupMenu.PopupMenuItem(label);
|
||||
}
|
||||
}
|
||||
|
||||
// Set common initial properties.
|
||||
item.actor.visible = visible;
|
||||
item.setSensitive(enabled);
|
||||
if (accessibleDesc) {
|
||||
item.actor.get_accessible().accessible_description = accessibleDesc;
|
||||
}
|
||||
updateDisposition();
|
||||
updateIcon();
|
||||
updateOrnament();
|
||||
|
||||
// Prevent an initial resize flicker.
|
||||
if (wantIcon) {
|
||||
item.icon.icon_size = 16;
|
||||
}
|
||||
|
||||
signalsHandler.add([dbusmenuItem, Dbusmenu.MENUITEM_SIGNAL_PROPERTY_CHANGED, onPropertyChanged]);
|
||||
|
||||
// Connections on item will be lost when item is disposed; there's no need
|
||||
// to add them to signalsHandler.
|
||||
item.connect('activate', () => {
|
||||
dbusmenuItem.handle_event(Dbusmenu.MENUITEM_EVENT_ACTIVATED, new GLib.Variant('i', 0), Math.floor(Date.now()/1000));
|
||||
});
|
||||
item.connect('destroy', () => signalsHandler.destroy());
|
||||
|
||||
return item;
|
||||
}
|
File diff suppressed because it is too large
Load Diff
@ -1,21 +0,0 @@
|
||||
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
|
||||
|
||||
const ExtensionUtils = imports.misc.extensionUtils;
|
||||
const Me = ExtensionUtils.getCurrentExtension();
|
||||
const Docking = Me.imports.docking;
|
||||
|
||||
// We declare this with var so it can be accessed by other extensions in
|
||||
// GNOME Shell 3.26+ (mozjs52+).
|
||||
var dockManager;
|
||||
|
||||
function init() {
|
||||
ExtensionUtils.initTranslations('dashtodock');
|
||||
}
|
||||
|
||||
function enable() {
|
||||
new Docking.DockManager();
|
||||
}
|
||||
|
||||
function disable() {
|
||||
dockManager.destroy();
|
||||
}
|
@ -1,226 +0,0 @@
|
||||
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
|
||||
|
||||
const Gio = imports.gi.Gio;
|
||||
const Signals = imports.signals;
|
||||
|
||||
const Me = imports.misc.extensionUtils.getCurrentExtension();
|
||||
const Utils = Me.imports.utils;
|
||||
|
||||
const FileManager1Iface = '<node><interface name="org.freedesktop.FileManager1">\
|
||||
<property name="XUbuntuOpenLocationsXids" type="a{uas}" access="read"/>\
|
||||
<property name="OpenWindowsWithLocations" type="a{sas}" access="read"/>\
|
||||
</interface></node>';
|
||||
|
||||
const FileManager1Proxy = Gio.DBusProxy.makeProxyWrapper(FileManager1Iface);
|
||||
|
||||
/**
|
||||
* This class implements a client for the org.freedesktop.FileManager1 dbus
|
||||
* interface, and specifically for the OpenWindowsWithLocations property
|
||||
* which is published by Nautilus, but is not an official part of the interface.
|
||||
*
|
||||
* The property is a map from window identifiers to a list of locations open in
|
||||
* the window.
|
||||
*
|
||||
* While OpeWindowsWithLocations is part of upstream Nautilus, for many years
|
||||
* prior, Ubuntu patched Nautilus to publish XUbuntuOpenLocationsXids, which is
|
||||
* similar but uses Xids as the window identifiers instead of gtk window paths.
|
||||
*
|
||||
* When an old or unpatched Nautilus is running, we will observe the properties
|
||||
* to always be empty arrays, but there will not be any correctness issues.
|
||||
*/
|
||||
var FileManager1Client = class DashToDock_FileManager1Client {
|
||||
|
||||
constructor() {
|
||||
this._signalsHandler = new Utils.GlobalSignalsHandler();
|
||||
this._cancellable = new Gio.Cancellable();
|
||||
|
||||
this._locationMap = new Map();
|
||||
this._proxy = new FileManager1Proxy(Gio.DBus.session,
|
||||
"org.freedesktop.FileManager1",
|
||||
"/org/freedesktop/FileManager1",
|
||||
(initable, error) => {
|
||||
// Use async construction to avoid blocking on errors.
|
||||
if (error) {
|
||||
if (!error.matches(Gio.IOErrorEnum, Gio.IOErrorEnum.CANCELLED))
|
||||
global.log(error);
|
||||
} else {
|
||||
this._updateLocationMap();
|
||||
}
|
||||
}, this._cancellable);
|
||||
|
||||
this._signalsHandler.add([
|
||||
this._proxy,
|
||||
'g-properties-changed',
|
||||
this._onPropertyChanged.bind(this)
|
||||
], [
|
||||
// We must additionally listen for Screen events to know when to
|
||||
// rebuild our location map when the set of available windows changes.
|
||||
global.workspace_manager,
|
||||
'workspace-switched',
|
||||
this._updateLocationMap.bind(this)
|
||||
], [
|
||||
global.display,
|
||||
'window-entered-monitor',
|
||||
this._updateLocationMap.bind(this)
|
||||
], [
|
||||
global.display,
|
||||
'window-left-monitor',
|
||||
this._updateLocationMap.bind(this)
|
||||
]);
|
||||
}
|
||||
|
||||
destroy() {
|
||||
this._cancellable.cancel();
|
||||
this._signalsHandler.destroy();
|
||||
this._proxy.run_dispose();
|
||||
}
|
||||
|
||||
/**
|
||||
* Return an array of windows that are showing a location or
|
||||
* sub-directories of that location.
|
||||
*/
|
||||
getWindows(location) {
|
||||
let ret = new Set();
|
||||
let locationEsc = location;
|
||||
|
||||
if (!location.endsWith('/')) {
|
||||
locationEsc += '/';
|
||||
}
|
||||
|
||||
for (let [k,v] of this._locationMap) {
|
||||
if ((k + '/').startsWith(locationEsc)) {
|
||||
for (let l of v) {
|
||||
ret.add(l);
|
||||
}
|
||||
}
|
||||
}
|
||||
return Array.from(ret);
|
||||
}
|
||||
|
||||
_onPropertyChanged(proxy, changed, invalidated) {
|
||||
let property = changed.unpack();
|
||||
if (property &&
|
||||
('XUbuntuOpenLocationsXids' in property ||
|
||||
'OpenWindowsWithLocations' in property)) {
|
||||
this._updateLocationMap();
|
||||
}
|
||||
}
|
||||
|
||||
_updateLocationMap() {
|
||||
let properties = this._proxy.get_cached_property_names();
|
||||
if (properties == null) {
|
||||
// Nothing to check yet.
|
||||
return;
|
||||
}
|
||||
|
||||
if (properties.includes('OpenWindowsWithLocations')) {
|
||||
this._updateFromPaths();
|
||||
} else if (properties.includes('XUbuntuOpenLocationsXids')) {
|
||||
this._updateFromXids();
|
||||
}
|
||||
}
|
||||
|
||||
_updateFromPaths() {
|
||||
let pathToLocations = this._proxy.OpenWindowsWithLocations;
|
||||
let pathToWindow = getPathToWindow();
|
||||
|
||||
let locationToWindow = new Map();
|
||||
for (let path in pathToLocations) {
|
||||
let locations = pathToLocations[path];
|
||||
for (let i = 0; i < locations.length; i++) {
|
||||
let l = locations[i];
|
||||
// Use a set to deduplicate when a window has a
|
||||
// location open in multiple tabs.
|
||||
if (!locationToWindow.has(l)) {
|
||||
locationToWindow.set(l, new Set());
|
||||
}
|
||||
let window = pathToWindow.get(path);
|
||||
if (window != null) {
|
||||
locationToWindow.get(l).add(window);
|
||||
}
|
||||
}
|
||||
}
|
||||
this._locationMap = locationToWindow;
|
||||
this.emit('windows-changed');
|
||||
}
|
||||
|
||||
_updateFromXids() {
|
||||
let xidToLocations = this._proxy.XUbuntuOpenLocationsXids;
|
||||
let xidToWindow = getXidToWindow();
|
||||
|
||||
let locationToWindow = new Map();
|
||||
for (let xid in xidToLocations) {
|
||||
let locations = xidToLocations[xid];
|
||||
for (let i = 0; i < locations.length; i++) {
|
||||
let l = locations[i];
|
||||
// Use a set to deduplicate when a window has a
|
||||
// location open in multiple tabs.
|
||||
if (!locationToWindow.has(l)) {
|
||||
locationToWindow.set(l, new Set());
|
||||
}
|
||||
let window = xidToWindow.get(parseInt(xid));
|
||||
if (window != null) {
|
||||
locationToWindow.get(l).add(window);
|
||||
}
|
||||
}
|
||||
}
|
||||
this._locationMap = locationToWindow;
|
||||
this.emit('windows-changed');
|
||||
}
|
||||
}
|
||||
Signals.addSignalMethods(FileManager1Client.prototype);
|
||||
|
||||
/**
|
||||
* Construct a map of gtk application window object paths to MetaWindows.
|
||||
*/
|
||||
function getPathToWindow() {
|
||||
let pathToWindow = new Map();
|
||||
|
||||
for (let i = 0; i < global.workspace_manager.n_workspaces; i++) {
|
||||
let ws = global.workspace_manager.get_workspace_by_index(i);
|
||||
ws.list_windows().map(function(w) {
|
||||
let path = w.get_gtk_window_object_path();
|
||||
if (path != null) {
|
||||
pathToWindow.set(path, w);
|
||||
}
|
||||
});
|
||||
}
|
||||
return pathToWindow;
|
||||
}
|
||||
|
||||
/**
|
||||
* Construct a map of XIDs to MetaWindows.
|
||||
*
|
||||
* This is somewhat annoying as you cannot lookup a window by
|
||||
* XID in any way, and must iterate through all of them looking
|
||||
* for a match.
|
||||
*/
|
||||
function getXidToWindow() {
|
||||
let xidToWindow = new Map();
|
||||
|
||||
for (let i = 0; i < global.workspace_manager.n_workspaces; i++) {
|
||||
let ws = global.workspace_manager.get_workspace_by_index(i);
|
||||
ws.list_windows().map(function(w) {
|
||||
let xid = guessWindowXID(w);
|
||||
if (xid != null) {
|
||||
xidToWindow.set(parseInt(xid), w);
|
||||
}
|
||||
});
|
||||
}
|
||||
return xidToWindow;
|
||||
}
|
||||
|
||||
/**
|
||||
* Guesses the X ID of a window.
|
||||
*
|
||||
* This is the basic implementation that is sufficient for Nautilus
|
||||
* windows. The pixel-saver extension has a much more complex
|
||||
* implementation if we ever need it.
|
||||
*/
|
||||
function guessWindowXID(win) {
|
||||
try {
|
||||
return win.get_description().match(/0x[0-9a-f]+/)[0];
|
||||
} catch (err) {
|
||||
return null;
|
||||
}
|
||||
}
|
@ -1,321 +0,0 @@
|
||||
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
|
||||
|
||||
const GLib = imports.gi.GLib;
|
||||
const Meta = imports.gi.Meta;
|
||||
const Shell = imports.gi.Shell;
|
||||
|
||||
const Main = imports.ui.main;
|
||||
const Signals = imports.signals;
|
||||
|
||||
const Me = imports.misc.extensionUtils.getCurrentExtension();
|
||||
const Docking = Me.imports.docking;
|
||||
const Utils = Me.imports.utils;
|
||||
|
||||
// A good compromise between reactivity and efficiency; to be tuned.
|
||||
const INTELLIHIDE_CHECK_INTERVAL = 100;
|
||||
|
||||
const OverlapStatus = {
|
||||
UNDEFINED: -1,
|
||||
FALSE: 0,
|
||||
TRUE: 1
|
||||
};
|
||||
|
||||
const IntellihideMode = {
|
||||
ALL_WINDOWS: 0,
|
||||
FOCUS_APPLICATION_WINDOWS: 1,
|
||||
MAXIMIZED_WINDOWS : 2
|
||||
};
|
||||
|
||||
// List of windows type taken into account. Order is important (keep the original
|
||||
// enum order).
|
||||
const handledWindowTypes = [
|
||||
Meta.WindowType.NORMAL,
|
||||
Meta.WindowType.DOCK,
|
||||
Meta.WindowType.DIALOG,
|
||||
Meta.WindowType.MODAL_DIALOG,
|
||||
Meta.WindowType.TOOLBAR,
|
||||
Meta.WindowType.MENU,
|
||||
Meta.WindowType.UTILITY,
|
||||
Meta.WindowType.SPLASHSCREEN
|
||||
];
|
||||
|
||||
/**
|
||||
* A rough and ugly implementation of the intellihide behaviour.
|
||||
* Intallihide object: emit 'status-changed' signal when the overlap of windows
|
||||
* with the provided targetBoxClutter.ActorBox changes;
|
||||
*/
|
||||
var Intellihide = class DashToDock_Intellihide {
|
||||
|
||||
constructor(monitorIndex) {
|
||||
// Load settings
|
||||
this._monitorIndex = monitorIndex;
|
||||
|
||||
this._signalsHandler = new Utils.GlobalSignalsHandler();
|
||||
this._tracker = Shell.WindowTracker.get_default();
|
||||
this._focusApp = null; // The application whose window is focused.
|
||||
this._topApp = null; // The application whose window is on top on the monitor with the dock.
|
||||
|
||||
this._isEnabled = false;
|
||||
this.status = OverlapStatus.UNDEFINED;
|
||||
this._targetBox = null;
|
||||
|
||||
this._checkOverlapTimeoutContinue = false;
|
||||
this._checkOverlapTimeoutId = 0;
|
||||
|
||||
this._trackedWindows = new Map();
|
||||
|
||||
// Connect global signals
|
||||
this._signalsHandler.add([
|
||||
// Add signals on windows created from now on
|
||||
global.display,
|
||||
'window-created',
|
||||
this._windowCreated.bind(this)
|
||||
], [
|
||||
// triggered for instance when the window list order changes,
|
||||
// included when the workspace is switched
|
||||
global.display,
|
||||
'restacked',
|
||||
this._checkOverlap.bind(this)
|
||||
], [
|
||||
// when windows are alwasy on top, the focus window can change
|
||||
// without the windows being restacked. Thus monitor window focus change.
|
||||
this._tracker,
|
||||
'notify::focus-app',
|
||||
this._checkOverlap.bind(this)
|
||||
], [
|
||||
// update wne monitor changes, for instance in multimonitor when monitor are attached
|
||||
Meta.MonitorManager.get(),
|
||||
'monitors-changed',
|
||||
this._checkOverlap.bind(this)
|
||||
]);
|
||||
}
|
||||
|
||||
destroy() {
|
||||
// Disconnect global signals
|
||||
this._signalsHandler.destroy();
|
||||
|
||||
// Remove residual windows signals
|
||||
this.disable();
|
||||
}
|
||||
|
||||
enable() {
|
||||
this._isEnabled = true;
|
||||
this._status = OverlapStatus.UNDEFINED;
|
||||
global.get_window_actors().forEach(function(wa) {
|
||||
this._addWindowSignals(wa);
|
||||
}, this);
|
||||
this._doCheckOverlap();
|
||||
}
|
||||
|
||||
disable() {
|
||||
this._isEnabled = false;
|
||||
|
||||
for (let wa of this._trackedWindows.keys()) {
|
||||
this._removeWindowSignals(wa);
|
||||
}
|
||||
this._trackedWindows.clear();
|
||||
|
||||
if (this._checkOverlapTimeoutId > 0) {
|
||||
GLib.source_remove(this._checkOverlapTimeoutId);
|
||||
this._checkOverlapTimeoutId = 0;
|
||||
}
|
||||
}
|
||||
|
||||
_windowCreated(display, metaWindow) {
|
||||
this._addWindowSignals(metaWindow.get_compositor_private());
|
||||
}
|
||||
|
||||
_addWindowSignals(wa) {
|
||||
if (!this._handledWindow(wa))
|
||||
return;
|
||||
let signalId = wa.connect('notify::allocation', this._checkOverlap.bind(this));
|
||||
this._trackedWindows.set(wa, signalId);
|
||||
wa.connect('destroy', this._removeWindowSignals.bind(this));
|
||||
}
|
||||
|
||||
_removeWindowSignals(wa) {
|
||||
if (this._trackedWindows.get(wa)) {
|
||||
wa.disconnect(this._trackedWindows.get(wa));
|
||||
this._trackedWindows.delete(wa);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
updateTargetBox(box) {
|
||||
this._targetBox = box;
|
||||
this._checkOverlap();
|
||||
}
|
||||
|
||||
forceUpdate() {
|
||||
this._status = OverlapStatus.UNDEFINED;
|
||||
this._doCheckOverlap();
|
||||
}
|
||||
|
||||
getOverlapStatus() {
|
||||
return (this._status == OverlapStatus.TRUE);
|
||||
}
|
||||
|
||||
_checkOverlap() {
|
||||
if (!this._isEnabled || (this._targetBox == null))
|
||||
return;
|
||||
|
||||
/* Limit the number of calls to the doCheckOverlap function */
|
||||
if (this._checkOverlapTimeoutId) {
|
||||
this._checkOverlapTimeoutContinue = true;
|
||||
return
|
||||
}
|
||||
|
||||
this._doCheckOverlap();
|
||||
|
||||
this._checkOverlapTimeoutId = GLib.timeout_add(
|
||||
GLib.PRIORITY_DEFAULT, INTELLIHIDE_CHECK_INTERVAL, () => {
|
||||
this._doCheckOverlap();
|
||||
if (this._checkOverlapTimeoutContinue) {
|
||||
this._checkOverlapTimeoutContinue = false;
|
||||
return GLib.SOURCE_CONTINUE;
|
||||
} else {
|
||||
this._checkOverlapTimeoutId = 0;
|
||||
return GLib.SOURCE_REMOVE;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
_doCheckOverlap() {
|
||||
|
||||
if (!this._isEnabled || (this._targetBox == null))
|
||||
return;
|
||||
|
||||
let overlaps = OverlapStatus.FALSE;
|
||||
let windows = global.get_window_actors();
|
||||
|
||||
if (windows.length > 0) {
|
||||
/*
|
||||
* Get the top window on the monitor where the dock is placed.
|
||||
* The idea is that we dont want to overlap with the windows of the topmost application,
|
||||
* event is it's not the focused app -- for instance because in multimonitor the user
|
||||
* select a window in the secondary monitor.
|
||||
*/
|
||||
|
||||
let topWindow = null;
|
||||
for (let i = windows.length - 1; i >= 0; i--) {
|
||||
let meta_win = windows[i].get_meta_window();
|
||||
if (this._handledWindow(windows[i]) && (meta_win.get_monitor() == this._monitorIndex)) {
|
||||
topWindow = meta_win;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (topWindow !== null) {
|
||||
this._topApp = this._tracker.get_window_app(topWindow);
|
||||
// If there isn't a focused app, use that of the window on top
|
||||
this._focusApp = this._tracker.focus_app || this._topApp
|
||||
|
||||
windows = windows.filter(this._intellihideFilterInteresting, this);
|
||||
|
||||
for (let i = 0; i < windows.length; i++) {
|
||||
let win = windows[i].get_meta_window();
|
||||
|
||||
if (win) {
|
||||
let rect = win.get_frame_rect();
|
||||
|
||||
let test = (rect.x < this._targetBox.x2) &&
|
||||
(rect.x + rect.width > this._targetBox.x1) &&
|
||||
(rect.y < this._targetBox.y2) &&
|
||||
(rect.y + rect.height > this._targetBox.y1);
|
||||
|
||||
if (test) {
|
||||
overlaps = OverlapStatus.TRUE;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (this._status !== overlaps) {
|
||||
this._status = overlaps;
|
||||
this.emit('status-changed', this._status);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// Filter interesting windows to be considered for intellihide.
|
||||
// Consider all windows visible on the current workspace.
|
||||
// Optionally skip windows of other applications
|
||||
_intellihideFilterInteresting(wa) {
|
||||
let meta_win = wa.get_meta_window();
|
||||
if (!this._handledWindow(wa))
|
||||
return false;
|
||||
|
||||
let currentWorkspace = global.workspace_manager.get_active_workspace_index();
|
||||
let wksp = meta_win.get_workspace();
|
||||
let wksp_index = wksp.index();
|
||||
|
||||
// Depending on the intellihide mode, exclude non-relevent windows
|
||||
switch (Docking.DockManager.settings.get_enum('intellihide-mode')) {
|
||||
case IntellihideMode.ALL_WINDOWS:
|
||||
// Do nothing
|
||||
break;
|
||||
|
||||
case IntellihideMode.FOCUS_APPLICATION_WINDOWS:
|
||||
// Skip windows of other apps
|
||||
if (this._focusApp) {
|
||||
// The DropDownTerminal extension is not an application per se
|
||||
// so we match its window by wm class instead
|
||||
if (meta_win.get_wm_class() == 'DropDownTerminalWindow')
|
||||
return true;
|
||||
|
||||
let currentApp = this._tracker.get_window_app(meta_win);
|
||||
let focusWindow = global.display.get_focus_window()
|
||||
|
||||
// Consider half maximized windows side by side
|
||||
// and windows which are alwayson top
|
||||
if((currentApp != this._focusApp) && (currentApp != this._topApp)
|
||||
&& !((focusWindow && focusWindow.maximized_vertically && !focusWindow.maximized_horizontally)
|
||||
&& (meta_win.maximized_vertically && !meta_win.maximized_horizontally)
|
||||
&& meta_win.get_monitor() == focusWindow.get_monitor())
|
||||
&& !meta_win.is_above())
|
||||
return false;
|
||||
}
|
||||
break;
|
||||
|
||||
case IntellihideMode.MAXIMIZED_WINDOWS:
|
||||
// Skip unmaximized windows
|
||||
if (!meta_win.maximized_vertically && !meta_win.maximized_horizontally)
|
||||
return false;
|
||||
break;
|
||||
}
|
||||
|
||||
if ( wksp_index == currentWorkspace && meta_win.showing_on_its_workspace() )
|
||||
return true;
|
||||
else
|
||||
return false;
|
||||
|
||||
}
|
||||
|
||||
// Filter windows by type
|
||||
// inspired by Opacify@gnome-shell.localdomain.pl
|
||||
_handledWindow(wa) {
|
||||
let metaWindow = wa.get_meta_window();
|
||||
|
||||
if (!metaWindow)
|
||||
return false;
|
||||
|
||||
// The DropDownTerminal extension uses the POPUP_MENU window type hint
|
||||
// so we match its window by wm class instead
|
||||
if (metaWindow.get_wm_class() == 'DropDownTerminalWindow')
|
||||
return true;
|
||||
|
||||
let wtype = metaWindow.get_window_type();
|
||||
for (let i = 0; i < handledWindowTypes.length; i++) {
|
||||
var hwtype = handledWindowTypes[i];
|
||||
if (hwtype == wtype)
|
||||
return true;
|
||||
else if (hwtype > wtype)
|
||||
return false;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
};
|
||||
|
||||
Signals.addSignalMethods(Intellihide.prototype);
|
@ -1,281 +0,0 @@
|
||||
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
|
||||
|
||||
const Gio = imports.gi.Gio;
|
||||
|
||||
const Me = imports.misc.extensionUtils.getCurrentExtension();
|
||||
const DbusmenuUtils = Me.imports.dbusmenuUtils;
|
||||
|
||||
const Dbusmenu = DbusmenuUtils.haveDBusMenu();
|
||||
|
||||
var LauncherEntryRemoteModel = class DashToDock_LauncherEntryRemoteModel {
|
||||
|
||||
constructor() {
|
||||
this._entrySourceStacks = new Map();
|
||||
this._remoteMaps = new Map();
|
||||
|
||||
this._launcher_entry_dbus_signal_id =
|
||||
Gio.DBus.session.signal_subscribe(null, // sender
|
||||
'com.canonical.Unity.LauncherEntry', // iface
|
||||
'Update', // member
|
||||
null, // path
|
||||
null, // arg0
|
||||
Gio.DBusSignalFlags.NONE,
|
||||
(connection, sender_name, object_path, interface_name, signal_name, parameters) =>
|
||||
this._onUpdate(sender_name, ...parameters.deep_unpack()));
|
||||
|
||||
this._dbus_name_owner_changed_signal_id =
|
||||
Gio.DBus.session.signal_subscribe('org.freedesktop.DBus', // sender
|
||||
'org.freedesktop.DBus', // interface
|
||||
'NameOwnerChanged', // member
|
||||
'/org/freedesktop/DBus', // path
|
||||
null, // arg0
|
||||
Gio.DBusSignalFlags.NONE,
|
||||
(connection, sender_name, object_path, interface_name, signal_name, parameters) =>
|
||||
this._onDBusNameChange(...parameters.deep_unpack().slice(1)));
|
||||
|
||||
this._acquireUnityDBus();
|
||||
}
|
||||
|
||||
destroy() {
|
||||
if (this._launcher_entry_dbus_signal_id) {
|
||||
Gio.DBus.session.signal_unsubscribe(this._launcher_entry_dbus_signal_id);
|
||||
}
|
||||
|
||||
if (this._dbus_name_owner_changed_signal_id) {
|
||||
Gio.DBus.session.signal_unsubscribe(this._dbus_name_owner_changed_signal_id);
|
||||
}
|
||||
|
||||
this._releaseUnityDBus();
|
||||
}
|
||||
|
||||
_lookupStackById(appId) {
|
||||
let sourceStack = this._entrySourceStacks.get(appId);
|
||||
if (!sourceStack) {
|
||||
this._entrySourceStacks.set(appId, sourceStack = new PropertySourceStack(new LauncherEntry(), launcherEntryDefaults));
|
||||
}
|
||||
return sourceStack;
|
||||
}
|
||||
|
||||
lookupById(appId) {
|
||||
return this._lookupStackById(appId).target;
|
||||
}
|
||||
|
||||
_acquireUnityDBus() {
|
||||
if (!this._unity_bus_id) {
|
||||
this._unity_bus_id = Gio.DBus.session.own_name('com.canonical.Unity',
|
||||
Gio.BusNameOwnerFlags.ALLOW_REPLACEMENT | Gio.BusNameOwnerFlags.REPLACE,
|
||||
null, () => this._unity_bus_id = 0);
|
||||
}
|
||||
}
|
||||
|
||||
_releaseUnityDBus() {
|
||||
if (this._unity_bus_id) {
|
||||
Gio.DBus.session.unown_name(this._unity_bus_id);
|
||||
this._unity_bus_id = 0;
|
||||
}
|
||||
}
|
||||
|
||||
_onDBusNameChange(before, after) {
|
||||
if (!before || !this._remoteMaps.size) {
|
||||
return;
|
||||
}
|
||||
const remoteMap = this._remoteMaps.get(before);
|
||||
if (!remoteMap) {
|
||||
return;
|
||||
}
|
||||
this._remoteMaps.delete(before);
|
||||
if (after && !this._remoteMaps.has(after)) {
|
||||
this._remoteMaps.set(after, remoteMap);
|
||||
} else {
|
||||
for (const [appId, remote] of remoteMap) {
|
||||
const sourceStack = this._entrySourceStacks.get(appId);
|
||||
const changed = sourceStack.remove(remote);
|
||||
if (changed) {
|
||||
sourceStack.target._emitChangedEvents(changed);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
_onUpdate(senderName, appUri, properties) {
|
||||
if (!senderName) {
|
||||
return;
|
||||
}
|
||||
|
||||
const appId = appUri.replace(/(^\w+:|^)\/\//, '');
|
||||
if (!appId) {
|
||||
return;
|
||||
}
|
||||
|
||||
let remoteMap = this._remoteMaps.get(senderName);
|
||||
if (!remoteMap) {
|
||||
this._remoteMaps.set(senderName, remoteMap = new Map());
|
||||
}
|
||||
let remote = remoteMap.get(appId);
|
||||
if (!remote) {
|
||||
remoteMap.set(appId, remote = Object.assign({}, launcherEntryDefaults));
|
||||
}
|
||||
for (const name in properties) {
|
||||
if (name === 'quicklist' && Dbusmenu) {
|
||||
const quicklistPath = properties[name].unpack();
|
||||
if (quicklistPath && (!remote._quicklistMenuClient || remote._quicklistMenuClient.dbus_object !== quicklistPath)) {
|
||||
remote.quicklist = null;
|
||||
let menuClient = remote._quicklistMenuClient;
|
||||
if (menuClient) {
|
||||
menuClient.dbus_object = quicklistPath;
|
||||
} else {
|
||||
// This property should not be enumerable
|
||||
Object.defineProperty(remote, '_quicklistMenuClient', {
|
||||
writable: true,
|
||||
value: menuClient = new Dbusmenu.Client({ dbus_name: senderName, dbus_object: quicklistPath }),
|
||||
});
|
||||
}
|
||||
const handler = () => {
|
||||
const root = menuClient.get_root();
|
||||
if (remote.quicklist !== root) {
|
||||
remote.quicklist = root;
|
||||
if (sourceStack.isTop(remote)) {
|
||||
sourceStack.target.quicklist = root;
|
||||
sourceStack.target._emitChangedEvents(['quicklist']);
|
||||
}
|
||||
}
|
||||
};
|
||||
menuClient.connect(Dbusmenu.CLIENT_SIGNAL_ROOT_CHANGED, handler);
|
||||
}
|
||||
} else {
|
||||
remote[name] = properties[name].unpack();
|
||||
}
|
||||
}
|
||||
|
||||
const sourceStack = this._lookupStackById(appId);
|
||||
sourceStack.target._emitChangedEvents(sourceStack.update(remote));
|
||||
}
|
||||
};
|
||||
|
||||
const launcherEntryDefaults = {
|
||||
count: 0,
|
||||
progress: 0,
|
||||
urgent: false,
|
||||
quicklist: null,
|
||||
'count-visible': false,
|
||||
'progress-visible': false,
|
||||
};
|
||||
|
||||
const LauncherEntry = class DashToDock_LauncherEntry {
|
||||
constructor() {
|
||||
this._connections = new Map();
|
||||
this._handlers = new Map();
|
||||
this._nextId = 0;
|
||||
}
|
||||
|
||||
connect(eventNames, callback) {
|
||||
if (typeof eventNames === 'string') {
|
||||
eventNames = [eventNames];
|
||||
}
|
||||
callback(this, this);
|
||||
const id = this._nextId++;
|
||||
const handler = { id, callback };
|
||||
eventNames.forEach(name => {
|
||||
let handlerList = this._handlers.get(name);
|
||||
if (!handlerList) {
|
||||
this._handlers.set(name, handlerList = []);
|
||||
}
|
||||
handlerList.push(handler);
|
||||
});
|
||||
this._connections.set(id, eventNames);
|
||||
return id;
|
||||
}
|
||||
|
||||
disconnect(id) {
|
||||
const eventNames = this._connections.get(id);
|
||||
if (!eventNames) {
|
||||
return;
|
||||
}
|
||||
this._connections.delete(id);
|
||||
eventNames.forEach(name => {
|
||||
const handlerList = this._handlers.get(name);
|
||||
if (handlerList) {
|
||||
for (let i = 0, iMax = handlerList.length; i < iMax; i++) {
|
||||
if (handlerList[i].id === id) {
|
||||
handlerList.splice(i, 1);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
_emitChangedEvents(propertyNames) {
|
||||
const handlers = new Set();
|
||||
propertyNames.forEach(name => {
|
||||
const handlerList = this._handlers.get(name + '-changed');
|
||||
if (handlerList) {
|
||||
for (let i = 0, iMax = handlerList.length; i < iMax; i++) {
|
||||
handlers.add(handlerList[i]);
|
||||
}
|
||||
}
|
||||
});
|
||||
Array.from(handlers).sort((x, y) => x.id - y.id).forEach(handler => handler.callback(this, this));
|
||||
}
|
||||
}
|
||||
|
||||
for (const name in launcherEntryDefaults) {
|
||||
const jsName = name.replace(/-/g, '_');
|
||||
LauncherEntry.prototype[jsName] = launcherEntryDefaults[name];
|
||||
if (jsName !== name) {
|
||||
Object.defineProperty(LauncherEntry.prototype, name, {
|
||||
get() {
|
||||
return this[jsName];
|
||||
},
|
||||
set(value) {
|
||||
this[jsName] = value;
|
||||
},
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
const PropertySourceStack = class DashToDock_PropertySourceStack {
|
||||
constructor(target, bottom) {
|
||||
this.target = target;
|
||||
this._bottom = bottom;
|
||||
this._stack = [];
|
||||
}
|
||||
|
||||
isTop(source) {
|
||||
return this._stack.length > 0 && this._stack[this._stack.length - 1] === source;
|
||||
}
|
||||
|
||||
update(source) {
|
||||
if (!this.isTop(source)) {
|
||||
this.remove(source);
|
||||
this._stack.push(source);
|
||||
}
|
||||
return this._assignFrom(source);
|
||||
}
|
||||
|
||||
remove(source) {
|
||||
const stack = this._stack;
|
||||
const top = stack[stack.length - 1];
|
||||
if (top === source) {
|
||||
stack.length--;
|
||||
return this._assignFrom(stack.length > 0 ? stack[stack.length - 1] : this._bottom);
|
||||
}
|
||||
for (let i = 0, iMax = stack.length; i < iMax; i++) {
|
||||
if (stack[i] === source) {
|
||||
stack.splice(i, 1);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
_assignFrom(source) {
|
||||
const changedProperties = [];
|
||||
for (const name in source) {
|
||||
if (this.target[name] !== source[name]) {
|
||||
this.target[name] = source[name];
|
||||
changedProperties.push(name);
|
||||
}
|
||||
}
|
||||
return changedProperties;
|
||||
}
|
||||
}
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,293 +0,0 @@
|
||||
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
|
||||
|
||||
const Gio = imports.gi.Gio;
|
||||
const GLib = imports.gi.GLib;
|
||||
const Gtk = imports.gi.Gtk;
|
||||
const Shell = imports.gi.Shell;
|
||||
const Signals = imports.signals;
|
||||
|
||||
// Use __ () and N__() for the extension gettext domain, and reuse
|
||||
// the shell domain with the default _() and N_()
|
||||
const Gettext = imports.gettext.domain('dashtodock');
|
||||
const __ = Gettext.gettext;
|
||||
const N__ = function(e) { return e };
|
||||
|
||||
const Me = imports.misc.extensionUtils.getCurrentExtension();
|
||||
const Utils = Me.imports.utils;
|
||||
|
||||
const UPDATE_TRASH_DELAY = 500;
|
||||
|
||||
/**
|
||||
* This class maintains a Shell.App representing the Trash and keeps it
|
||||
* up-to-date as the trash fills and is emptied over time.
|
||||
*/
|
||||
var Trash = class DashToDock_Trash {
|
||||
|
||||
constructor() {
|
||||
this._file = Gio.file_new_for_uri('trash://');
|
||||
try {
|
||||
this._monitor = this._file.monitor_directory(0, null);
|
||||
this._signalId = this._monitor.connect(
|
||||
'changed',
|
||||
this._onTrashChange.bind(this)
|
||||
);
|
||||
} catch (e) {
|
||||
log(`Impossible to monitor trash: ${e}`)
|
||||
}
|
||||
this._lastEmpty = true;
|
||||
this._empty = true;
|
||||
this._schedUpdateId = 0;
|
||||
this._updateTrash();
|
||||
}
|
||||
|
||||
destroy() {
|
||||
if (this._monitor) {
|
||||
this._monitor.disconnect(this._signalId);
|
||||
this._monitor.run_dispose();
|
||||
}
|
||||
this._file.run_dispose();
|
||||
}
|
||||
|
||||
_onTrashChange() {
|
||||
if (this._schedUpdateId) {
|
||||
GLib.source_remove(this._schedUpdateId);
|
||||
}
|
||||
this._schedUpdateId = GLib.timeout_add(
|
||||
GLib.PRIORITY_DEFAULT, UPDATE_TRASH_DELAY, () => {
|
||||
this._schedUpdateId = 0;
|
||||
this._updateTrash();
|
||||
return GLib.SOURCE_REMOVE;
|
||||
});
|
||||
}
|
||||
|
||||
_updateTrash() {
|
||||
try {
|
||||
let children = this._file.enumerate_children('*', 0, null);
|
||||
this._empty = children.next_file(null) == null;
|
||||
children.close(null);
|
||||
} catch (e) {
|
||||
log(`Impossible to enumerate trash children: ${e}`)
|
||||
return;
|
||||
}
|
||||
|
||||
this._ensureApp();
|
||||
}
|
||||
|
||||
_ensureApp() {
|
||||
if (this._trashApp == null ||
|
||||
this._lastEmpty != this._empty) {
|
||||
let trashKeys = new GLib.KeyFile();
|
||||
trashKeys.set_string('Desktop Entry', 'Name', __('Trash'));
|
||||
trashKeys.set_string('Desktop Entry', 'Icon',
|
||||
this._empty ? 'user-trash' : 'user-trash-full');
|
||||
trashKeys.set_string('Desktop Entry', 'Type', 'Application');
|
||||
trashKeys.set_string('Desktop Entry', 'Exec', 'gio open trash:///');
|
||||
trashKeys.set_string('Desktop Entry', 'StartupNotify', 'false');
|
||||
trashKeys.set_string('Desktop Entry', 'XdtdUri', 'trash:///');
|
||||
if (!this._empty) {
|
||||
trashKeys.set_string('Desktop Entry', 'Actions', 'empty-trash;');
|
||||
trashKeys.set_string('Desktop Action empty-trash', 'Name', __('Empty Trash'));
|
||||
trashKeys.set_string('Desktop Action empty-trash', 'Exec',
|
||||
'dbus-send --print-reply --dest=org.gnome.Nautilus /org/gnome/Nautilus org.gnome.Nautilus.FileOperations.EmptyTrash');
|
||||
}
|
||||
|
||||
let trashAppInfo = Gio.DesktopAppInfo.new_from_keyfile(trashKeys);
|
||||
this._trashApp = new Shell.App({appInfo: trashAppInfo});
|
||||
this._lastEmpty = this._empty;
|
||||
|
||||
this.emit('changed');
|
||||
}
|
||||
}
|
||||
|
||||
getApp() {
|
||||
this._ensureApp();
|
||||
return this._trashApp;
|
||||
}
|
||||
}
|
||||
Signals.addSignalMethods(Trash.prototype);
|
||||
|
||||
/**
|
||||
* This class maintains Shell.App representations for removable devices
|
||||
* plugged into the system, and keeps the list of Apps up-to-date as
|
||||
* devices come and go and are mounted and unmounted.
|
||||
*/
|
||||
var Removables = class DashToDock_Removables {
|
||||
|
||||
constructor() {
|
||||
this._signalsHandler = new Utils.GlobalSignalsHandler();
|
||||
|
||||
this._monitor = Gio.VolumeMonitor.get();
|
||||
this._volumeApps = []
|
||||
this._mountApps = []
|
||||
|
||||
this._monitor.get_volumes().forEach(
|
||||
(volume) => {
|
||||
this._onVolumeAdded(this._monitor, volume);
|
||||
}
|
||||
);
|
||||
|
||||
this._monitor.get_mounts().forEach(
|
||||
(mount) => {
|
||||
this._onMountAdded(this._monitor, mount);
|
||||
}
|
||||
);
|
||||
|
||||
this._signalsHandler.add([
|
||||
this._monitor,
|
||||
'mount-added',
|
||||
this._onMountAdded.bind(this)
|
||||
], [
|
||||
this._monitor,
|
||||
'mount-removed',
|
||||
this._onMountRemoved.bind(this)
|
||||
], [
|
||||
this._monitor,
|
||||
'volume-added',
|
||||
this._onVolumeAdded.bind(this)
|
||||
], [
|
||||
this._monitor,
|
||||
'volume-removed',
|
||||
this._onVolumeRemoved.bind(this)
|
||||
]);
|
||||
}
|
||||
|
||||
destroy() {
|
||||
this._signalsHandler.destroy();
|
||||
this._monitor.run_dispose();
|
||||
}
|
||||
|
||||
_getWorkingIconName(icon) {
|
||||
if (icon instanceof Gio.EmblemedIcon) {
|
||||
icon = icon.get_icon();
|
||||
}
|
||||
if (icon instanceof Gio.ThemedIcon) {
|
||||
let iconTheme = Gtk.IconTheme.get_default();
|
||||
let names = icon.get_names();
|
||||
for (let i = 0; i < names.length; i++) {
|
||||
let iconName = names[i];
|
||||
if (iconTheme.has_icon(iconName)) {
|
||||
return iconName;
|
||||
}
|
||||
}
|
||||
return '';
|
||||
} else {
|
||||
return icon.to_string();
|
||||
}
|
||||
}
|
||||
|
||||
_onVolumeAdded(monitor, volume) {
|
||||
if (!volume.can_mount()) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (volume.get_identifier('class') == 'network') {
|
||||
return;
|
||||
}
|
||||
|
||||
let activationRoot = volume.get_activation_root();
|
||||
if (!activationRoot) {
|
||||
// Can't offer to mount a device if we don't know
|
||||
// where to mount it.
|
||||
// These devices are usually ejectable so you
|
||||
// don't normally unmount them anyway.
|
||||
return;
|
||||
}
|
||||
|
||||
let escapedUri = activationRoot.get_uri()
|
||||
let uri = GLib.uri_unescape_string(escapedUri, null);
|
||||
|
||||
let volumeKeys = new GLib.KeyFile();
|
||||
volumeKeys.set_string('Desktop Entry', 'Name', volume.get_name());
|
||||
volumeKeys.set_string('Desktop Entry', 'Icon', this._getWorkingIconName(volume.get_icon()));
|
||||
volumeKeys.set_string('Desktop Entry', 'Type', 'Application');
|
||||
volumeKeys.set_string('Desktop Entry', 'Exec', 'gio open "' + uri + '"');
|
||||
volumeKeys.set_string('Desktop Entry', 'StartupNotify', 'false');
|
||||
volumeKeys.set_string('Desktop Entry', 'XdtdUri', escapedUri);
|
||||
volumeKeys.set_string('Desktop Entry', 'Actions', 'mount;');
|
||||
volumeKeys.set_string('Desktop Action mount', 'Name', __('Mount'));
|
||||
volumeKeys.set_string('Desktop Action mount', 'Exec', 'gio mount "' + uri + '"');
|
||||
let volumeAppInfo = Gio.DesktopAppInfo.new_from_keyfile(volumeKeys);
|
||||
let volumeApp = new Shell.App({appInfo: volumeAppInfo});
|
||||
this._volumeApps.push(volumeApp);
|
||||
this.emit('changed');
|
||||
}
|
||||
|
||||
_onVolumeRemoved(monitor, volume) {
|
||||
for (let i = 0; i < this._volumeApps.length; i++) {
|
||||
let app = this._volumeApps[i];
|
||||
if (app.get_name() == volume.get_name()) {
|
||||
this._volumeApps.splice(i, 1);
|
||||
}
|
||||
}
|
||||
this.emit('changed');
|
||||
}
|
||||
|
||||
_onMountAdded(monitor, mount) {
|
||||
// Filter out uninteresting mounts
|
||||
if (!mount.can_eject() && !mount.can_unmount())
|
||||
return;
|
||||
if (mount.is_shadowed())
|
||||
return;
|
||||
|
||||
let volume = mount.get_volume();
|
||||
if (!volume || volume.get_identifier('class') == 'network') {
|
||||
return;
|
||||
}
|
||||
|
||||
let escapedUri = mount.get_root().get_uri()
|
||||
let uri = GLib.uri_unescape_string(escapedUri, null);
|
||||
|
||||
let mountKeys = new GLib.KeyFile();
|
||||
mountKeys.set_string('Desktop Entry', 'Name', mount.get_name());
|
||||
mountKeys.set_string('Desktop Entry', 'Icon',
|
||||
this._getWorkingIconName(volume.get_icon()));
|
||||
mountKeys.set_string('Desktop Entry', 'Type', 'Application');
|
||||
mountKeys.set_string('Desktop Entry', 'Exec', 'gio open "' + uri + '"');
|
||||
mountKeys.set_string('Desktop Entry', 'StartupNotify', 'false');
|
||||
mountKeys.set_string('Desktop Entry', 'XdtdUri', escapedUri);
|
||||
mountKeys.set_string('Desktop Entry', 'Actions', 'unmount;');
|
||||
if (mount.can_eject()) {
|
||||
mountKeys.set_string('Desktop Action unmount', 'Name', __('Eject'));
|
||||
mountKeys.set_string('Desktop Action unmount', 'Exec',
|
||||
'gio mount -e "' + uri + '"');
|
||||
} else {
|
||||
mountKeys.set_string('Desktop Entry', 'Actions', 'unmount;');
|
||||
mountKeys.set_string('Desktop Action unmount', 'Name', __('Unmount'));
|
||||
mountKeys.set_string('Desktop Action unmount', 'Exec',
|
||||
'gio mount -u "' + uri + '"');
|
||||
}
|
||||
let mountAppInfo = Gio.DesktopAppInfo.new_from_keyfile(mountKeys);
|
||||
let mountApp = new Shell.App({appInfo: mountAppInfo});
|
||||
this._mountApps.push(mountApp);
|
||||
this.emit('changed');
|
||||
}
|
||||
|
||||
_onMountRemoved(monitor, mount) {
|
||||
for (let i = 0; i < this._mountApps.length; i++) {
|
||||
let app = this._mountApps[i];
|
||||
if (app.get_name() == mount.get_name()) {
|
||||
this._mountApps.splice(i, 1);
|
||||
}
|
||||
}
|
||||
this.emit('changed');
|
||||
}
|
||||
|
||||
getApps() {
|
||||
// When we have both a volume app and a mount app, we prefer
|
||||
// the mount app.
|
||||
let apps = new Map();
|
||||
this._volumeApps.map(function(app) {
|
||||
apps.set(app.get_name(), app);
|
||||
});
|
||||
this._mountApps.map(function(app) {
|
||||
apps.set(app.get_name(), app);
|
||||
});
|
||||
|
||||
let ret = [];
|
||||
for (let app of apps.values()) {
|
||||
ret.push(app);
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
}
|
||||
Signals.addSignalMethods(Removables.prototype);
|
@ -1,139 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="18.343554mm"
|
||||
height="18.343554mm"
|
||||
viewBox="0 0 14.674843 14.674842"
|
||||
version="1.1"
|
||||
id="svg4941"
|
||||
sodipodi:docname="glossy.svg"
|
||||
inkscape:version="0.92.1 r15371">
|
||||
<defs
|
||||
id="defs4935">
|
||||
<linearGradient
|
||||
id="linearGradient6812"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop6810" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop6808" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient18962"
|
||||
id="linearGradient35463"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.29132751,0,0,0.15428114,-54.210829,160.22776)"
|
||||
x1="214.71877"
|
||||
y1="404.36081"
|
||||
x2="214.71877"
|
||||
y2="443.54596" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient18962">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop18964" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop18966" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient18806">
|
||||
<stop
|
||||
style="stop-color:#ff0101;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop18808" />
|
||||
<stop
|
||||
style="stop-color:#800000;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop18810" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6812"
|
||||
id="radialGradient6798"
|
||||
cx="7.3538475"
|
||||
cy="230.28426"
|
||||
fx="7.3538475"
|
||||
fy="230.28426"
|
||||
r="7.2099228"
|
||||
gradientTransform="matrix(5.9484829,-0.0346444,0.01679088,3.0681664,-40.338609,-476.01412)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="10.68"
|
||||
inkscape:cx="65.485107"
|
||||
inkscape:cy="29.432163"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:window-width="2560"
|
||||
inkscape:window-height="1406"
|
||||
inkscape:window-x="1920"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
scale-x="0.8"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0" />
|
||||
<metadata
|
||||
id="metadata4938">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-222.92515)">
|
||||
<rect
|
||||
inkscape:export-ydpi="180"
|
||||
inkscape:export-xdpi="180"
|
||||
inkscape:export-filename="C:\Arbeit\Blog\Tutorials\glossybutton\Glossy_Button_Tutorial.png"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.35100002;fill:url(#linearGradient35463);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.39747861;marker:none;enable-background:accumulate"
|
||||
id="rect19155"
|
||||
width="14.634871"
|
||||
height="3.7392156"
|
||||
x="0.039808333"
|
||||
y="222.98268"
|
||||
rx="1.5496143"
|
||||
ry="0.82064426" />
|
||||
<rect
|
||||
style="opacity:0.427;fill:url(#radialGradient6798);fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect6706"
|
||||
width="14.363673"
|
||||
height="14.404656"
|
||||
x="0.090466507"
|
||||
y="223.07919" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 4.3 KiB |
@ -1,82 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
viewBox="-0.7 0 48 48"
|
||||
version="1.1"
|
||||
id="svg10"
|
||||
sodipodi:docname="highlight_stacked_bg.svg"
|
||||
width="48"
|
||||
height="48"
|
||||
inkscape:version="0.92.1 r15371">
|
||||
<metadata
|
||||
id="metadata16">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs14" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="951"
|
||||
id="namedview12"
|
||||
showgrid="false"
|
||||
viewbox-x="-0.7"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:zoom="3.8125"
|
||||
inkscape:cx="-63.872219"
|
||||
inkscape:cy="15.195756"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="27"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg10" />
|
||||
<g
|
||||
id="g8"
|
||||
transform="matrix(1,0,0,48,-0.7,0)"
|
||||
style="opacity:0.25;fill:#eeeeee;stroke-width:0.14433756">
|
||||
<rect
|
||||
width="45"
|
||||
height="1"
|
||||
id="rect2"
|
||||
x="0"
|
||||
y="0"
|
||||
style="stroke-width:0.14433756" />
|
||||
<rect
|
||||
x="45"
|
||||
width="1"
|
||||
height="1"
|
||||
id="rect4"
|
||||
y="0"
|
||||
style="opacity:0.2;stroke-width:0.02083333" />
|
||||
<rect
|
||||
x="46"
|
||||
width="2"
|
||||
height="1"
|
||||
id="rect6"
|
||||
y="0"
|
||||
style="opacity:0.6;stroke-width:0.02083333" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.1 KiB |
@ -1,82 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
viewBox="-0.7 0 48 48"
|
||||
version="1.1"
|
||||
id="svg10"
|
||||
sodipodi:docname="highlight_stacked_bg_h.svg"
|
||||
width="48"
|
||||
height="48"
|
||||
inkscape:version="0.92.1 r15371">
|
||||
<metadata
|
||||
id="metadata16">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs14" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1853"
|
||||
inkscape:window-height="1016"
|
||||
id="namedview12"
|
||||
showgrid="false"
|
||||
viewbox-x="-0.7"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:zoom="3.8125"
|
||||
inkscape:cx="-63.872219"
|
||||
inkscape:cy="15.195756"
|
||||
inkscape:window-x="67"
|
||||
inkscape:window-y="27"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg10" />
|
||||
<g
|
||||
id="g8"
|
||||
transform="matrix(0,-1,-48,0,47.3,48)"
|
||||
style="opacity:0.25;fill:#eeeeee;stroke-width:0.14433756">
|
||||
<rect
|
||||
width="45"
|
||||
height="1"
|
||||
id="rect2"
|
||||
x="0"
|
||||
y="0"
|
||||
style="stroke-width:0.14433756" />
|
||||
<rect
|
||||
x="45"
|
||||
width="1"
|
||||
height="1"
|
||||
id="rect4"
|
||||
y="0"
|
||||
style="opacity:0.2;stroke-width:0.02083333" />
|
||||
<rect
|
||||
x="46"
|
||||
width="2"
|
||||
height="1"
|
||||
id="rect6"
|
||||
y="0"
|
||||
style="opacity:0.6;stroke-width:0.02083333" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.1 KiB |
@ -1,528 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="33.866665mm"
|
||||
height="33.866684mm"
|
||||
viewBox="0 0 33.866665 33.866683"
|
||||
id="svg5179"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="logo.svg">
|
||||
<defs
|
||||
id="defs5181">
|
||||
<clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath4379-92-4-9-6-8-0">
|
||||
<rect
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.83189655;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.04922473;marker:none;enable-background:accumulate"
|
||||
id="rect4381-17-7-5-2-0-6"
|
||||
width="19.934219"
|
||||
height="33.52573"
|
||||
x="356.02826"
|
||||
y="457.71631" />
|
||||
</clipPath>
|
||||
<filter
|
||||
style="color-interpolation-filters:sRGB"
|
||||
inkscape:collect="always"
|
||||
id="filter4435-8-5-3-2-13-8"
|
||||
x="-0.22881356"
|
||||
width="1.4576271"
|
||||
y="-0.22881356"
|
||||
height="1.4576271">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="1.0352993"
|
||||
id="feGaussianBlur4437-6-7-9-8-8-1" />
|
||||
</filter>
|
||||
<filter
|
||||
style="color-interpolation-filters:sRGB"
|
||||
inkscape:collect="always"
|
||||
id="filter4365-71-5-7-0-6-2"
|
||||
x="-0.21864407"
|
||||
width="1.437288"
|
||||
y="-0.21864407"
|
||||
height="1.437288">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="0.98928601"
|
||||
id="feGaussianBlur4367-74-5-92-0-6-5" />
|
||||
</filter>
|
||||
<clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath4379-6-7-5-8-6-01-2">
|
||||
<rect
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.83189655;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.04922473;marker:none;enable-background:accumulate"
|
||||
id="rect4381-1-8-5-2-0-2-7"
|
||||
width="19.934219"
|
||||
height="33.52573"
|
||||
x="356.02826"
|
||||
y="457.71631" />
|
||||
</clipPath>
|
||||
<filter
|
||||
style="color-interpolation-filters:sRGB"
|
||||
inkscape:collect="always"
|
||||
id="filter4435-6-1-2-8-2-2-7"
|
||||
x="-0.22881356"
|
||||
width="1.4576271"
|
||||
y="-0.22881356"
|
||||
height="1.4576271">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="1.0352993"
|
||||
id="feGaussianBlur4437-1-1-3-60-1-4-4" />
|
||||
</filter>
|
||||
<filter
|
||||
style="color-interpolation-filters:sRGB"
|
||||
inkscape:collect="always"
|
||||
id="filter4365-4-5-2-24-7-3-3"
|
||||
x="-0.21864407"
|
||||
width="1.437288"
|
||||
y="-0.21864407"
|
||||
height="1.437288">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="0.98928601"
|
||||
id="feGaussianBlur4367-7-0-7-7-9-0-3" />
|
||||
</filter>
|
||||
<clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath4379-5-6-0-9-8-7-9">
|
||||
<rect
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.83189655;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.04922473;marker:none;enable-background:accumulate"
|
||||
id="rect4381-6-8-5-9-9-2-4"
|
||||
width="19.934219"
|
||||
height="33.52573"
|
||||
x="356.02826"
|
||||
y="457.71631" />
|
||||
</clipPath>
|
||||
<filter
|
||||
style="color-interpolation-filters:sRGB"
|
||||
inkscape:collect="always"
|
||||
id="filter4435-63-9-2-4-1-2-6"
|
||||
x="-0.22881356"
|
||||
width="1.4576271"
|
||||
y="-0.22881356"
|
||||
height="1.4576271">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="1.0352993"
|
||||
id="feGaussianBlur4437-0-5-6-8-8-9-9" />
|
||||
</filter>
|
||||
<filter
|
||||
style="color-interpolation-filters:sRGB"
|
||||
inkscape:collect="always"
|
||||
id="filter4365-2-4-3-6-3-1-7"
|
||||
x="-0.21864407"
|
||||
width="1.437288"
|
||||
y="-0.21864407"
|
||||
height="1.437288">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="0.98928601"
|
||||
id="feGaussianBlur4367-1-2-5-3-5-8-3" />
|
||||
</filter>
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB"
|
||||
id="filter4255"
|
||||
x="-0.20374454"
|
||||
width="1.4074891"
|
||||
y="-0.13779147"
|
||||
height="1.2755829">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="0.25863247"
|
||||
id="feGaussianBlur4257" />
|
||||
</filter>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="8"
|
||||
inkscape:cx="60.090739"
|
||||
inkscape:cy="60.108985"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:window-width="1861"
|
||||
inkscape:window-height="1023"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="27"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata5184">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(136.97858,-11.552354)">
|
||||
<rect
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#0055d4;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.04922473;marker:none;enable-background:accumulate"
|
||||
id="rect4006-4-6-9-2-0-6"
|
||||
width="33.83363"
|
||||
height="33.859909"
|
||||
x="-136.9473"
|
||||
y="11.552354"
|
||||
inkscape:export-filename="/home/michele/Dropbox/lavori/gnome-shell-extension/icon/g5218.png"
|
||||
inkscape:export-xdpi="44.99099"
|
||||
inkscape:export-ydpi="44.99099" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.25;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.15440008;marker:none;filter:url(#filter4365-3);enable-background:accumulate"
|
||||
d="m -130.12265,11.559157 c -4.30029,5.691881 -6.67207,12.608761 -6.82289,19.674442 -0.0115,0.54232 -0.0147,1.0766 0,1.62024 0.11433,4.23572 1.04846,8.50668 2.82497,12.565201 l 31.00865,0 0,-33.859883 -27.01073,0 z"
|
||||
id="path6097-2-6-0-89-4"
|
||||
inkscape:export-filename="/home/michele/Dropbox/lavori/gnome-shell-extension/icon/g5218.png"
|
||||
inkscape:export-xdpi="44.99099"
|
||||
inkscape:export-ydpi="44.99099" />
|
||||
<path
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate"
|
||||
d="m -136.9473,18.430158 0,0.7896 0,20.641361 0,0.7896 1.23782,0 2.26288,0 1.60528,0 c 0.68577,0 1.23783,-0.3548 1.23783,-0.7896 l 0,-20.641361 c 0,-0.4398 -0.55206,-0.7896 -1.23783,-0.7896 l -1.60528,0 -2.26288,0 z"
|
||||
id="rect4008-7-9-2-0-3-4"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccccssssccc"
|
||||
inkscape:export-filename="/home/michele/Dropbox/lavori/gnome-shell-extension/icon/g5218.png"
|
||||
inkscape:export-xdpi="44.99099"
|
||||
inkscape:export-ydpi="44.99099" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.15;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.15440008;marker:none;filter:url(#filter4365-3);enable-background:accumulate"
|
||||
d="m -119.36792,11.559157 c -10.47023,5.721881 -17.57762,16.847401 -17.57762,29.627402 0,1.43804 0.0897,2.841801 0.26432,4.232481 l 33.5693,0 0,-33.859883 -16.256,0 z"
|
||||
id="path6097-4-5-23-9"
|
||||
inkscape:export-filename="/home/michele/Dropbox/lavori/gnome-shell-extension/icon/g5218.png"
|
||||
inkscape:export-xdpi="44.99099"
|
||||
inkscape:export-ydpi="44.99099" />
|
||||
<rect
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.04922473;marker:none;enable-background:accumulate"
|
||||
id="rect4247-4-4-5-3-8-1"
|
||||
width="33.83363"
|
||||
height="2.1162443"
|
||||
x="-136.9473"
|
||||
y="11.552354"
|
||||
inkscape:export-filename="/home/michele/Dropbox/lavori/gnome-shell-extension/icon/g5218.png"
|
||||
inkscape:export-xdpi="44.99099"
|
||||
inkscape:export-ydpi="44.99099" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.04922473;marker:none;enable-background:accumulate"
|
||||
d="m -103.11365,13.668597 0,1.05812 c 0,-0.58196 -0.47338,-1.05812 -1.05731,-1.05812 l 1.05731,0 z"
|
||||
id="rect4272-0-7-8-1-1-3-3-1"
|
||||
inkscape:export-filename="/home/michele/Dropbox/lavori/gnome-shell-extension/icon/g5218.png"
|
||||
inkscape:export-xdpi="44.99099"
|
||||
inkscape:export-ydpi="44.99099" />
|
||||
<rect
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.04922473;marker:none;enable-background:accumulate"
|
||||
id="rect4031-9-9-2-4-2-5"
|
||||
width="4.2292037"
|
||||
height="4.2324886"
|
||||
x="-135.89"
|
||||
y="19.488146"
|
||||
rx="1.0583334"
|
||||
ry="1.0583334"
|
||||
inkscape:export-filename="/home/michele/Dropbox/lavori/gnome-shell-extension/icon/g5218.png"
|
||||
inkscape:export-xdpi="44.99099"
|
||||
inkscape:export-ydpi="44.99099" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.04922473;marker:none;enable-background:accumulate"
|
||||
d="m -136.94728,13.668597 0,1.05812 c 0,-0.58196 0.47337,-1.05812 1.0573,-1.05812 l -1.0573,0 z"
|
||||
id="rect4272-0-2-1-74-41-1-6"
|
||||
inkscape:export-filename="/home/michele/Dropbox/lavori/gnome-shell-extension/icon/g5218.png"
|
||||
inkscape:export-xdpi="44.99099"
|
||||
inkscape:export-ydpi="44.99099" />
|
||||
<g
|
||||
id="g4353-9-2-1-5-5-4"
|
||||
transform="matrix(0.10331261,0,0,0.10339285,-173.76079,-27.453246)"
|
||||
clip-path="url(#clipPath4379-92-4-9-6-8-0)"
|
||||
inkscape:export-filename="/home/michele/Dropbox/lavori/gnome-shell-extension/icon/g5218.png"
|
||||
inkscape:export-xdpi="44.99099"
|
||||
inkscape:export-ydpi="44.99099">
|
||||
<circle
|
||||
r="5.4295697"
|
||||
cy="477.71164"
|
||||
cx="274.13016"
|
||||
transform="matrix(0.94749688,0,0,0.94749688,96.290796,21.848877)"
|
||||
id="path3153-1-7-3-5-60-3-6"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.42241378;fill:#d7eef4;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.04922473;marker:none;filter:url(#filter4435-8-5-3-2-13-8);enable-background:accumulate" />
|
||||
<circle
|
||||
r="5.4295697"
|
||||
cy="477.71164"
|
||||
cx="274.13016"
|
||||
transform="matrix(0.24231546,0,0,0.24231546,289.60229,358.72226)"
|
||||
id="path3153-2-4-1-6-6-9-4-1"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#d7eef4;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.04922473;marker:none;filter:url(#filter4365-71-5-7-0-6-2);enable-background:accumulate" />
|
||||
</g>
|
||||
<g
|
||||
id="g4589-4-1-1-3-6-2"
|
||||
transform="matrix(0.49926208,0,0,0.49964988,-318.21072,-206.05794)"
|
||||
inkscape:export-filename="/home/michele/Dropbox/lavori/gnome-shell-extension/icon/g5218.png"
|
||||
inkscape:export-xdpi="44.99099"
|
||||
inkscape:export-ydpi="44.99099">
|
||||
<g
|
||||
clip-path="url(#clipPath4379-6-7-5-8-6-01-2)"
|
||||
transform="matrix(0.20693061,0,0,0.20693061,289.32686,368.5622)"
|
||||
id="g4353-66-1-4-2-6-94-5">
|
||||
<circle
|
||||
r="5.4295697"
|
||||
cy="477.71164"
|
||||
cx="274.13016"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.42241378;fill:#d7eef4;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.04922473;marker:none;filter:url(#filter4435-6-1-2-8-2-2-7);enable-background:accumulate"
|
||||
id="path3153-1-6-4-5-63-7-1-0"
|
||||
transform="matrix(0.94749688,0,0,0.94749688,96.290796,21.848877)" />
|
||||
<circle
|
||||
r="5.4295697"
|
||||
cy="477.71164"
|
||||
cx="274.13016"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#d7eef4;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.04922473;marker:none;filter:url(#filter4365-4-5-2-24-7-3-3);enable-background:accumulate"
|
||||
id="path3153-2-4-7-6-5-8-5-9-5"
|
||||
transform="matrix(0.24231546,0,0,0.24231546,289.60229,358.72226)" />
|
||||
</g>
|
||||
<g
|
||||
clip-path="url(#clipPath4379-5-6-0-9-8-7-9)"
|
||||
transform="matrix(0.20693061,0,0,0.20693061,289.32686,367.53449)"
|
||||
id="g4353-7-2-2-6-4-5-1">
|
||||
<circle
|
||||
r="5.4295697"
|
||||
cy="477.71164"
|
||||
cx="274.13016"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.42241378;fill:#d7eef4;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.04922473;marker:none;filter:url(#filter4435-63-9-2-4-1-2-6);enable-background:accumulate"
|
||||
id="path3153-1-19-3-1-5-5-7-8"
|
||||
transform="matrix(0.94749688,0,0,0.94749688,96.290796,21.848877)" />
|
||||
<circle
|
||||
r="5.4295697"
|
||||
cy="477.71164"
|
||||
cx="274.13016"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#d7eef4;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.04922473;marker:none;filter:url(#filter4365-2-4-3-6-3-1-7);enable-background:accumulate"
|
||||
id="path3153-2-4-5-7-9-9-9-7-6"
|
||||
transform="matrix(0.24231546,0,0,0.24231546,289.60229,358.72226)" />
|
||||
</g>
|
||||
</g>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:1.28805089px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none"
|
||||
x="-124.44726"
|
||||
y="13.10139"
|
||||
id="text4824-5-2-0-4-8"
|
||||
sodipodi:linespacing="125%"
|
||||
inkscape:export-filename="/home/michele/Dropbox/lavori/gnome-shell-extension/icon/g5218.png"
|
||||
inkscape:export-xdpi="44.99099"
|
||||
inkscape:export-ydpi="44.99099"
|
||||
transform="scale(0.99961185,1.0003883)"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4826-16-3-8-8-1"
|
||||
x="-124.44726"
|
||||
y="13.10139">Dash to Dock</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:1.28805089px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none"
|
||||
x="-136.50272"
|
||||
y="13.10139"
|
||||
id="text4824-8-8-6-8-7-4"
|
||||
sodipodi:linespacing="125%"
|
||||
inkscape:export-filename="/home/michele/Dropbox/lavori/gnome-shell-extension/icon/g5218.png"
|
||||
inkscape:export-xdpi="44.99099"
|
||||
inkscape:export-ydpi="44.99099"
|
||||
transform="scale(0.99961185,1.0003883)"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4826-1-7-7-5-07-5"
|
||||
x="-136.50272"
|
||||
y="13.10139">Michele</tspan></text>
|
||||
<rect
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.04922473;marker:none;enable-background:accumulate"
|
||||
id="rect4031-9-0-8-5-4-0-7-6"
|
||||
width="4.2292037"
|
||||
height="4.2324886"
|
||||
x="-135.89"
|
||||
y="24.778917"
|
||||
rx="1.0583334"
|
||||
ry="1.0583334"
|
||||
inkscape:export-filename="/home/michele/Dropbox/lavori/gnome-shell-extension/icon/g5218.png"
|
||||
inkscape:export-xdpi="44.99099"
|
||||
inkscape:export-ydpi="44.99099" />
|
||||
<rect
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.04922473;marker:none;enable-background:accumulate"
|
||||
id="rect4031-9-0-7-3-3-6-0-1"
|
||||
width="4.2292037"
|
||||
height="4.2324886"
|
||||
x="-135.89"
|
||||
y="30.069445"
|
||||
rx="1.0583334"
|
||||
ry="1.0583334"
|
||||
inkscape:export-filename="/home/michele/Dropbox/lavori/gnome-shell-extension/icon/g5218.png"
|
||||
inkscape:export-xdpi="44.99099"
|
||||
inkscape:export-ydpi="44.99099" />
|
||||
<rect
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.04922473;marker:none;enable-background:accumulate"
|
||||
id="rect4031-9-0-6-5-1-3-9-0"
|
||||
width="4.2292037"
|
||||
height="4.2324886"
|
||||
x="-135.89"
|
||||
y="35.359974"
|
||||
rx="1.0583334"
|
||||
ry="1.0583334"
|
||||
inkscape:export-filename="/home/michele/Dropbox/lavori/gnome-shell-extension/icon/g5218.png"
|
||||
inkscape:export-xdpi="44.99099"
|
||||
inkscape:export-ydpi="44.99099" />
|
||||
<path
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.5;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate"
|
||||
d="m -136.9473,17.901078 0,0.52908 2.42849,0 2.21372,0 c 0.94338,0 1.7016,0.3372 1.7016,0.77704 l 0,20.649921 c 0,0.43476 -0.75822,0.7936 -1.7016,0.7936 l -2.21372,0 -2.42849,0 0,0.52904 0.90862,0 2.64325,0 1.88332,0 c 0.80005,0 1.43727,-0.3712 1.43727,-0.82664 l 0,-21.625361 c 0,-0.46072 -0.63722,-0.82668 -1.43727,-0.82668 l -1.88332,0 -2.64325,0 z"
|
||||
id="rect4008-7-0-0-3-3-3-7-9"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccsssscccccssssccc"
|
||||
inkscape:export-filename="/home/michele/Dropbox/lavori/gnome-shell-extension/icon/g5218.png"
|
||||
inkscape:export-xdpi="44.99099"
|
||||
inkscape:export-ydpi="44.99099" />
|
||||
<path
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.25;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate"
|
||||
d="m -136.9473,17.901078 0,0.52908 2.42849,0 2.21372,0 c 0.94338,0 1.7016,0.3372 1.7016,0.77704 l 0,20.649921 c 0,0.43476 -0.75822,0.7936 -1.7016,0.7936 l -2.21372,0 -2.42849,0 0,0.52904 0.90862,0 2.64325,0 1.88332,0 c 0.80005,0 1.43727,-0.3712 1.43727,-0.82664 l 0,-21.625361 c 0,-0.46072 -0.63722,-0.82668 -1.43727,-0.82668 l -1.88332,0 -2.64325,0 z"
|
||||
id="rect4008-7-0-0-3-1-5-0-5-5"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccsssscccccssssccc"
|
||||
inkscape:export-filename="/home/michele/Dropbox/lavori/gnome-shell-extension/icon/g5218.png"
|
||||
inkscape:export-xdpi="44.99099"
|
||||
inkscape:export-ydpi="44.99099" />
|
||||
<rect
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;marker:none;filter:url(#filter4365-3);enable-background:accumulate"
|
||||
id="rect6777-7-9-6-9-8"
|
||||
width="20.108335"
|
||||
height="18.256252"
|
||||
x="-125.24149"
|
||||
y="19.139757"
|
||||
inkscape:export-filename="/home/michele/Dropbox/lavori/gnome-shell-extension/icon/g5218.png"
|
||||
inkscape:export-xdpi="45"
|
||||
inkscape:export-ydpi="45" />
|
||||
<rect
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.25;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.13229166;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
id="rect4923-8-7-8-2"
|
||||
width="3.7041669"
|
||||
height="3.7041669"
|
||||
x="-116.71888"
|
||||
y="30.163927"
|
||||
rx="1.0583334"
|
||||
ry="1.0583334" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.15;fill:#b3b3b3;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;marker:none;filter:url(#filter4365-3);enable-background:accumulate"
|
||||
d="m -111.94623,19.146638 c -5.49508,1.3884 -10.21465,5.00036 -13.29531,9.92188 l 0,8.334361 20.10833,0 0,-18.256241 -6.81302,0 z"
|
||||
id="path6862-84-2-2-6-7"
|
||||
inkscape:export-filename="/home/michele/Dropbox/lavori/gnome-shell-extension/icon/g5218.png"
|
||||
inkscape:export-xdpi="45"
|
||||
inkscape:export-ydpi="45" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;marker:none;filter:url(#filter4365-3);enable-background:accumulate"
|
||||
d="m -125.02657,18.882038 c -0.11728,0 -0.21496,0.0812 -0.21496,0.1984 l 0,0.44648 0,1.2568 0,0.2148 0.21496,0 19.67838,0 0.215,0 0,-0.2148 0,-1.2568 0,-0.44648 c 0,-0.1172 -0.0977,-0.1984 -0.215,-0.1984 l -19.67838,0 z"
|
||||
id="rect6779-5-8-6-4-6"
|
||||
inkscape:export-filename="/home/michele/Dropbox/lavori/gnome-shell-extension/icon/g5218.png"
|
||||
inkscape:export-xdpi="45"
|
||||
inkscape:export-ydpi="45" />
|
||||
<rect
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#999999;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;marker:none;filter:url(#filter4365-3);enable-background:accumulate"
|
||||
id="rect6779-2-3-9-9-0-8"
|
||||
width="20.108335"
|
||||
height="0.5291667"
|
||||
x="-125.24149"
|
||||
y="20.991808"
|
||||
inkscape:export-filename="/home/michele/Dropbox/lavori/gnome-shell-extension/icon/g5218.png"
|
||||
inkscape:export-xdpi="45"
|
||||
inkscape:export-ydpi="45" />
|
||||
<rect
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#b3b3b3;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;marker:none;filter:url(#filter4365-3);enable-background:accumulate"
|
||||
id="rect6779-2-4-8-0-7-1-1"
|
||||
width="15.875001"
|
||||
height="0.5291667"
|
||||
x="21.521105"
|
||||
y="105.13315"
|
||||
transform="rotate(90)"
|
||||
inkscape:export-filename="/home/michele/Dropbox/lavori/gnome-shell-extension/icon/g5218.png"
|
||||
inkscape:export-xdpi="45"
|
||||
inkscape:export-ydpi="45" />
|
||||
<g
|
||||
id="g6839-1-5-1-33-0"
|
||||
transform="matrix(0.02002288,0.02002284,-0.02002288,0.02002284,-106.62848,-6.0229242)"
|
||||
style="fill:#1a1a1a"
|
||||
inkscape:export-filename="/home/michele/Dropbox/lavori/gnome-shell-extension/icon/g5218.png"
|
||||
inkscape:export-xdpi="45"
|
||||
inkscape:export-ydpi="45">
|
||||
<rect
|
||||
y="616.07727"
|
||||
x="653.01312"
|
||||
height="41.542522"
|
||||
width="11.313708"
|
||||
id="rect6819-8-9-2-56-9"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;marker:none;filter:url(#filter4365-3);enable-background:accumulate" />
|
||||
<rect
|
||||
transform="rotate(90)"
|
||||
y="-679.44122"
|
||||
x="631.19165"
|
||||
height="41.542522"
|
||||
width="11.313708"
|
||||
id="rect6819-3-9-4-3-1-5"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;marker:none;filter:url(#filter4365-3);enable-background:accumulate" />
|
||||
</g>
|
||||
<rect
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.25;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.13229166;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
id="rect4923-6-8-9-1"
|
||||
width="3.7041669"
|
||||
height="3.7041669"
|
||||
x="-123.59805"
|
||||
y="30.163927"
|
||||
rx="1.0583334"
|
||||
ry="1.0583334" />
|
||||
<path
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.26458335;stroke-miterlimit:4;stroke-dasharray:none;marker:none;enable-background:accumulate;opacity:0.866;filter:url(#filter4255)"
|
||||
d="m -121.46776,32.043964 -5e-4,1.742839 -4.9e-4,1.742839 0.71518,-0.708051 0.99716,1.727136 1.33421,-0.770304 -0.99542,-1.724104 0.96903,-0.268366 -1.50959,-0.870995 z"
|
||||
id="path6155-6-0-01-4-5-6-0-0"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccccccccc" />
|
||||
<path
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.13229167;stroke-miterlimit:4;stroke-dasharray:none;marker:none;filter:url(#filter4365-3);enable-background:accumulate"
|
||||
d="m -121.86464,32.043964 -5e-4,1.742839 -4.9e-4,1.742839 0.71518,-0.708051 1.05563,1.8284 1.3342,-0.770304 -1.05388,-1.825368 0.96903,-0.268366 -1.50959,-0.870995 z"
|
||||
id="path6155-6-0-8-0-7-97-5"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccccccccc" />
|
||||
<rect
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.25;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.13229166;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
id="rect4923-4-8-4"
|
||||
width="3.7041669"
|
||||
height="3.7041669"
|
||||
x="-123.59805"
|
||||
y="23.020128"
|
||||
rx="1.0583334"
|
||||
ry="1.0583334" />
|
||||
<rect
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.25;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.13229166;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
id="rect4923-2-6-7-8"
|
||||
width="3.7041669"
|
||||
height="3.7041669"
|
||||
x="-116.71888"
|
||||
y="23.020128"
|
||||
rx="1.0583334"
|
||||
ry="1.0583334" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 26 KiB |
@ -1,12 +0,0 @@
|
||||
{
|
||||
"shell-version": [
|
||||
"40"
|
||||
],
|
||||
"uuid": "dash-to-dock@micxgx.gmail.com",
|
||||
"name": "Dash to Dock",
|
||||
"description": "A dock for the Gnome Shell. This extension moves the dash out of the overview transforming it in a dock for an easier launching of applications and a faster switching between windows and desktops. Side and bottom placement options are available.",
|
||||
"original-author": "micxgx@gmail.com",
|
||||
"url": "https://micheleg.github.io/dash-to-dock/",
|
||||
"gettext-domain": "dashtodock",
|
||||
"version": 69
|
||||
}
|
@ -1,838 +0,0 @@
|
||||
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
|
||||
|
||||
const Gio = imports.gi.Gio;
|
||||
const GLib = imports.gi.GLib;
|
||||
const GObject = imports.gi.GObject;
|
||||
const Gtk = imports.gi.Gtk;
|
||||
const Gdk = imports.gi.Gdk;
|
||||
|
||||
// Use __ () and N__() for the extension gettext domain, and reuse
|
||||
// the shell domain with the default _() and N_()
|
||||
const Gettext = imports.gettext.domain('dashtodock');
|
||||
const __ = Gettext.gettext;
|
||||
const N__ = function (e) { return e };
|
||||
|
||||
const ExtensionUtils = imports.misc.extensionUtils;
|
||||
const Me = ExtensionUtils.getCurrentExtension();
|
||||
|
||||
const SCALE_UPDATE_TIMEOUT = 500;
|
||||
const DEFAULT_ICONS_SIZES = [128, 96, 64, 48, 32, 24, 16];
|
||||
|
||||
const TransparencyMode = {
|
||||
DEFAULT: 0,
|
||||
FIXED: 1,
|
||||
DYNAMIC: 3
|
||||
};
|
||||
|
||||
const RunningIndicatorStyle = {
|
||||
DEFAULT: 0,
|
||||
DOTS: 1,
|
||||
SQUARES: 2,
|
||||
DASHES: 3,
|
||||
SEGMENTED: 4,
|
||||
SOLID: 5,
|
||||
CILIORA: 6,
|
||||
METRO: 7
|
||||
};
|
||||
|
||||
// TODO:
|
||||
// function setShortcut(settings) {
|
||||
// let shortcut_text = settings.get_string('shortcut-text');
|
||||
// let [key, mods] = Gtk.accelerator_parse(shortcut_text);
|
||||
|
||||
// if (Gtk.accelerator_valid(key, mods)) {
|
||||
// let shortcut = Gtk.accelerator_name(key, mods);
|
||||
// settings.set_strv('shortcut', [shortcut]);
|
||||
// }
|
||||
// else {
|
||||
// settings.set_strv('shortcut', []);
|
||||
// }
|
||||
// }
|
||||
|
||||
var Settings = GObject.registerClass({
|
||||
Implements: [Gtk.BuilderScope],
|
||||
}, class DashToDock_Settings extends GObject.Object {
|
||||
|
||||
_init() {
|
||||
super._init();
|
||||
|
||||
this._settings = ExtensionUtils.getSettings('org.gnome.shell.extensions.dash-to-dock');
|
||||
|
||||
this._rtl = (Gtk.Widget.get_default_direction() == Gtk.TextDirection.RTL);
|
||||
|
||||
this._builder = new Gtk.Builder();
|
||||
this._builder.set_scope(this);
|
||||
this._builder.set_translation_domain(Me.metadata['gettext-domain']);
|
||||
this._builder.add_from_file(Me.path + '/Settings.ui');
|
||||
|
||||
this.widget = new Gtk.ScrolledWindow({ hscrollbar_policy: Gtk.PolicyType.NEVER });
|
||||
this._notebook = this._builder.get_object('settings_notebook');
|
||||
this.widget.set_child(this._notebook);
|
||||
|
||||
// Timeout to delay the update of the settings
|
||||
this._dock_size_timeout = 0;
|
||||
this._icon_size_timeout = 0;
|
||||
this._opacity_timeout = 0;
|
||||
|
||||
this._bindSettings();
|
||||
}
|
||||
|
||||
vfunc_create_closure(builder, handlerName, flags, connectObject) {
|
||||
if (flags & Gtk.BuilderClosureFlags.SWAPPED)
|
||||
throw new Error('Unsupported template signal flag "swapped"');
|
||||
|
||||
if (typeof this[handlerName] === 'undefined')
|
||||
throw new Error(`${handlerName} is undefined`);
|
||||
|
||||
return this[handlerName].bind(connectObject || this);
|
||||
}
|
||||
|
||||
dock_display_combo_changed_cb(combo) {
|
||||
this._settings.set_int('preferred-monitor', this._monitors[combo.get_active()]);
|
||||
}
|
||||
|
||||
position_top_button_toggled_cb(button) {
|
||||
if (button.get_active())
|
||||
this._settings.set_enum('dock-position', 0);
|
||||
}
|
||||
|
||||
position_right_button_toggled_cb(button) {
|
||||
if (button.get_active())
|
||||
this._settings.set_enum('dock-position', 1);
|
||||
}
|
||||
|
||||
position_bottom_button_toggled_cb(button) {
|
||||
if (button.get_active())
|
||||
this._settings.set_enum('dock-position', 2);
|
||||
}
|
||||
|
||||
position_left_button_toggled_cb(button) {
|
||||
if (button.get_active())
|
||||
this._settings.set_enum('dock-position', 3);
|
||||
}
|
||||
|
||||
icon_size_combo_changed_cb(combo) {
|
||||
this._settings.set_int('dash-max-icon-size', this._allIconSizes[combo.get_active()]);
|
||||
}
|
||||
|
||||
dock_size_scale_value_changed_cb(scale) {
|
||||
// Avoid settings the size continuously
|
||||
if (this._dock_size_timeout > 0)
|
||||
GLib.source_remove(this._dock_size_timeout);
|
||||
const id = this._dock_size_timeout = GLib.timeout_add(
|
||||
GLib.PRIORITY_DEFAULT, SCALE_UPDATE_TIMEOUT, () => {
|
||||
if (id === this._dock_size_timeout) {
|
||||
this._settings.set_double('height-fraction', scale.get_value());
|
||||
this._dock_size_timeout = 0;
|
||||
return GLib.SOURCE_REMOVE;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
icon_size_scale_value_changed_cb(scale) {
|
||||
// Avoid settings the size consinuosly
|
||||
if (this._icon_size_timeout > 0)
|
||||
GLib.source_remove(this._icon_size_timeout);
|
||||
this._icon_size_timeout = GLib.timeout_add(
|
||||
GLib.PRIORITY_DEFAULT, SCALE_UPDATE_TIMEOUT, () => {
|
||||
log(scale.get_value());
|
||||
this._settings.set_int('dash-max-icon-size', scale.get_value());
|
||||
this._icon_size_timeout = 0;
|
||||
return GLib.SOURCE_REMOVE;
|
||||
});
|
||||
}
|
||||
custom_opacity_scale_value_changed_cb(scale) {
|
||||
// Avoid settings the opacity consinuosly as it's change is animated
|
||||
if (this._opacity_timeout > 0)
|
||||
GLib.source_remove(this._opacity_timeout);
|
||||
this._opacity_timeout = GLib.timeout_add(
|
||||
GLib.PRIORITY_DEFAULT, SCALE_UPDATE_TIMEOUT, () => {
|
||||
this._settings.set_double('background-opacity', scale.get_value());
|
||||
this._opacity_timeout = 0;
|
||||
return GLib.SOURCE_REMOVE;
|
||||
});
|
||||
}
|
||||
min_opacity_scale_value_changed_cb(scale) {
|
||||
// Avoid settings the opacity consinuosly as it's change is animated
|
||||
if (this._opacity_timeout > 0)
|
||||
GLib.source_remove(this._opacity_timeout);
|
||||
this._opacity_timeout = GLib.timeout_add(
|
||||
GLib.PRIORITY_DEFAULT, SCALE_UPDATE_TIMEOUT, () => {
|
||||
this._settings.set_double('min-alpha', scale.get_value());
|
||||
this._opacity_timeout = 0;
|
||||
return GLib.SOURCE_REMOVE;
|
||||
});
|
||||
}
|
||||
max_opacity_scale_value_changed_cb(scale) {
|
||||
// Avoid settings the opacity consinuosly as it's change is animated
|
||||
if (this._opacity_timeout > 0)
|
||||
GLib.source_remove(this._opacity_timeout);
|
||||
this._opacity_timeout = GLib.timeout_add(
|
||||
GLib.PRIORITY_DEFAULT, SCALE_UPDATE_TIMEOUT, () => {
|
||||
this._settings.set_double('max-alpha', scale.get_value());
|
||||
this._opacity_timeout = 0;
|
||||
return GLib.SOURCE_REMOVE;
|
||||
});
|
||||
}
|
||||
|
||||
all_windows_radio_button_toggled_cb(button) {
|
||||
if (button.get_active())
|
||||
this._settings.set_enum('intellihide-mode', 0);
|
||||
}
|
||||
focus_application_windows_radio_button_toggled_cb(button) {
|
||||
if (button.get_active())
|
||||
this._settings.set_enum('intellihide-mode', 1);
|
||||
}
|
||||
maximized_windows_radio_button_toggled_cb(button) {
|
||||
if (button.get_active())
|
||||
this._settings.set_enum('intellihide-mode', 2);
|
||||
}
|
||||
|
||||
|
||||
_bindSettings() {
|
||||
// Position and size panel
|
||||
|
||||
// Monitor options
|
||||
|
||||
this._monitors = [];
|
||||
// Build options based on the number of monitors and the current settings.
|
||||
let monitors = Gdk.Display.get_default().get_monitors();
|
||||
let n_monitors = monitors.length;
|
||||
let primary_monitor = 0; // Gdk.Screen.get_default().get_primary_monitor();
|
||||
|
||||
let monitor = this._settings.get_int('preferred-monitor');
|
||||
|
||||
// Add primary monitor with index 0, because in GNOME Shell the primary monitor is always 0
|
||||
this._builder.get_object('dock_monitor_combo').append_text(__('Primary monitor'));
|
||||
this._monitors.push(0);
|
||||
|
||||
// Add connected monitors
|
||||
let ctr = 0;
|
||||
for (let i = 0; i < n_monitors; i++) {
|
||||
if (i !== primary_monitor) {
|
||||
ctr++;
|
||||
this._monitors.push(ctr);
|
||||
this._builder.get_object('dock_monitor_combo').append_text(__('Secondary monitor ') + ctr);
|
||||
}
|
||||
}
|
||||
|
||||
// If one of the external monitor is set as preferred, show it even if not attached
|
||||
if ((monitor >= n_monitors) && (monitor !== primary_monitor)) {
|
||||
this._monitors.push(monitor)
|
||||
this._builder.get_object('dock_monitor_combo').append_text(__('Secondary monitor ') + ++ctr);
|
||||
}
|
||||
|
||||
this._builder.get_object('dock_monitor_combo').set_active(this._monitors.indexOf(monitor));
|
||||
|
||||
// Position option
|
||||
let position = this._settings.get_enum('dock-position');
|
||||
|
||||
switch (position) {
|
||||
case 0:
|
||||
this._builder.get_object('position_top_button').set_active(true);
|
||||
break;
|
||||
case 1:
|
||||
this._builder.get_object('position_right_button').set_active(true);
|
||||
break;
|
||||
case 2:
|
||||
this._builder.get_object('position_bottom_button').set_active(true);
|
||||
break;
|
||||
case 3:
|
||||
this._builder.get_object('position_left_button').set_active(true);
|
||||
break;
|
||||
}
|
||||
|
||||
if (this._rtl) {
|
||||
/* Left is Right in rtl as a setting */
|
||||
this._builder.get_object('position_left_button').set_label(__('Right'));
|
||||
this._builder.get_object('position_right_button').set_label(__('Left'));
|
||||
}
|
||||
|
||||
// Intelligent autohide options
|
||||
this._settings.bind('dock-fixed',
|
||||
this._builder.get_object('intelligent_autohide_switch'),
|
||||
'active',
|
||||
Gio.SettingsBindFlags.INVERT_BOOLEAN);
|
||||
this._settings.bind('dock-fixed',
|
||||
this._builder.get_object('intelligent_autohide_button'),
|
||||
'sensitive',
|
||||
Gio.SettingsBindFlags.INVERT_BOOLEAN);
|
||||
this._settings.bind('autohide',
|
||||
this._builder.get_object('autohide_switch'),
|
||||
'active',
|
||||
Gio.SettingsBindFlags.DEFAULT);
|
||||
this._settings.bind('autohide-in-fullscreen',
|
||||
this._builder.get_object('autohide_enable_in_fullscreen_checkbutton'),
|
||||
'active',
|
||||
Gio.SettingsBindFlags.DEFAULT);
|
||||
this._settings.bind('require-pressure-to-show',
|
||||
this._builder.get_object('require_pressure_checkbutton'),
|
||||
'active',
|
||||
Gio.SettingsBindFlags.DEFAULT);
|
||||
this._settings.bind('intellihide',
|
||||
this._builder.get_object('intellihide_switch'),
|
||||
'active',
|
||||
Gio.SettingsBindFlags.DEFAULT);
|
||||
this._settings.bind('animation-time',
|
||||
this._builder.get_object('animation_duration_spinbutton'),
|
||||
'value',
|
||||
Gio.SettingsBindFlags.DEFAULT);
|
||||
this._settings.bind('hide-delay',
|
||||
this._builder.get_object('hide_timeout_spinbutton'),
|
||||
'value',
|
||||
Gio.SettingsBindFlags.DEFAULT);
|
||||
this._settings.bind('show-delay',
|
||||
this._builder.get_object('show_timeout_spinbutton'),
|
||||
'value',
|
||||
Gio.SettingsBindFlags.DEFAULT);
|
||||
this._settings.bind('pressure-threshold',
|
||||
this._builder.get_object('pressure_threshold_spinbutton'),
|
||||
'value',
|
||||
Gio.SettingsBindFlags.DEFAULT);
|
||||
|
||||
//this._builder.get_object('animation_duration_spinbutton').set_value(this._settings.get_double('animation-time'));
|
||||
|
||||
// Create dialog for intelligent autohide advanced settings
|
||||
this._builder.get_object('intelligent_autohide_button').connect('clicked', () => {
|
||||
|
||||
let dialog = new Gtk.Dialog({
|
||||
title: __('Intelligent autohide customization'),
|
||||
transient_for: this.widget.get_root(),
|
||||
use_header_bar: true,
|
||||
modal: true
|
||||
});
|
||||
|
||||
// GTK+ leaves positive values for application-defined response ids.
|
||||
// Use +1 for the reset action
|
||||
dialog.add_button(__('Reset to defaults'), 1);
|
||||
|
||||
let box = this._builder.get_object('intelligent_autohide_advanced_settings_box');
|
||||
dialog.get_content_area().append(box);
|
||||
|
||||
this._settings.bind('intellihide',
|
||||
this._builder.get_object('intellihide_mode_box'),
|
||||
'sensitive',
|
||||
Gio.SettingsBindFlags.GET);
|
||||
|
||||
// intellihide mode
|
||||
|
||||
let intellihideModeRadioButtons = [
|
||||
this._builder.get_object('all_windows_radio_button'),
|
||||
this._builder.get_object('focus_application_windows_radio_button'),
|
||||
this._builder.get_object('maximized_windows_radio_button')
|
||||
];
|
||||
|
||||
intellihideModeRadioButtons[this._settings.get_enum('intellihide-mode')].set_active(true);
|
||||
|
||||
this._settings.bind('autohide',
|
||||
this._builder.get_object('require_pressure_checkbutton'),
|
||||
'sensitive',
|
||||
Gio.SettingsBindFlags.GET);
|
||||
|
||||
this._settings.bind('autohide',
|
||||
this._builder.get_object('autohide_enable_in_fullscreen_checkbutton'),
|
||||
'sensitive',
|
||||
Gio.SettingsBindFlags.GET);
|
||||
|
||||
this._settings.bind('require-pressure-to-show',
|
||||
this._builder.get_object('show_timeout_spinbutton'),
|
||||
'sensitive',
|
||||
Gio.SettingsBindFlags.INVERT_BOOLEAN);
|
||||
this._settings.bind('require-pressure-to-show',
|
||||
this._builder.get_object('show_timeout_label'),
|
||||
'sensitive',
|
||||
Gio.SettingsBindFlags.INVERT_BOOLEAN);
|
||||
this._settings.bind('require-pressure-to-show',
|
||||
this._builder.get_object('pressure_threshold_spinbutton'),
|
||||
'sensitive',
|
||||
Gio.SettingsBindFlags.DEFAULT);
|
||||
this._settings.bind('require-pressure-to-show',
|
||||
this._builder.get_object('pressure_threshold_label'),
|
||||
'sensitive',
|
||||
Gio.SettingsBindFlags.DEFAULT);
|
||||
|
||||
dialog.connect('response', (dialog, id) => {
|
||||
if (id == 1) {
|
||||
// restore default settings for the relevant keys
|
||||
let keys = ['intellihide', 'autohide', 'intellihide-mode', 'autohide-in-fullscreen', 'require-pressure-to-show',
|
||||
'animation-time', 'show-delay', 'hide-delay', 'pressure-threshold'];
|
||||
keys.forEach(function (val) {
|
||||
this._settings.set_value(val, this._settings.get_default_value(val));
|
||||
}, this);
|
||||
intellihideModeRadioButtons[this._settings.get_enum('intellihide-mode')].set_active(true);
|
||||
} else {
|
||||
// remove the settings box so it doesn't get destroyed;
|
||||
dialog.get_content_area().remove(box);
|
||||
dialog.destroy();
|
||||
}
|
||||
return;
|
||||
});
|
||||
|
||||
dialog.present();
|
||||
|
||||
});
|
||||
|
||||
// size options
|
||||
const dock_size_scale = this._builder.get_object('dock_size_scale');
|
||||
dock_size_scale.set_value(this._settings.get_double('height-fraction'));
|
||||
dock_size_scale.add_mark(0.9, Gtk.PositionType.TOP, null);
|
||||
dock_size_scale.set_format_value_func((_, value) => {
|
||||
return Math.round(value * 100) + ' %';
|
||||
});
|
||||
let icon_size_scale = this._builder.get_object('icon_size_scale');
|
||||
icon_size_scale.set_range(8, DEFAULT_ICONS_SIZES[0]);
|
||||
icon_size_scale.set_value(this._settings.get_int('dash-max-icon-size'));
|
||||
DEFAULT_ICONS_SIZES.forEach(function (val) {
|
||||
icon_size_scale.add_mark(val, Gtk.PositionType.TOP, val.toString());
|
||||
});
|
||||
icon_size_scale.set_format_value_func((_, value) => {
|
||||
return value + ' px';
|
||||
});
|
||||
|
||||
// Corrent for rtl languages
|
||||
if (this._rtl) {
|
||||
// Flip value position: this is not done automatically
|
||||
dock_size_scale.set_value_pos(Gtk.PositionType.LEFT);
|
||||
icon_size_scale.set_value_pos(Gtk.PositionType.LEFT);
|
||||
// I suppose due to a bug, having a more than one mark and one above a value of 100
|
||||
// makes the rendering of the marks wrong in rtl. This doesn't happen setting the scale as not flippable
|
||||
// and then manually inverting it
|
||||
icon_size_scale.set_flippable(false);
|
||||
icon_size_scale.set_inverted(true);
|
||||
}
|
||||
|
||||
this._settings.bind('icon-size-fixed', this._builder.get_object('icon_size_fixed_checkbutton'), 'active', Gio.SettingsBindFlags.DEFAULT);
|
||||
this._settings.bind('extend-height', this._builder.get_object('dock_size_extend_checkbutton'), 'active', Gio.SettingsBindFlags.DEFAULT);
|
||||
this._settings.bind('extend-height', this._builder.get_object('dock_size_scale'), 'sensitive', Gio.SettingsBindFlags.INVERT_BOOLEAN);
|
||||
|
||||
|
||||
// Apps panel
|
||||
|
||||
this._settings.bind('show-running',
|
||||
this._builder.get_object('show_running_switch'),
|
||||
'active',
|
||||
Gio.SettingsBindFlags.DEFAULT);
|
||||
this._settings.bind('isolate-workspaces',
|
||||
this._builder.get_object('application_button_isolation_button'),
|
||||
'active',
|
||||
Gio.SettingsBindFlags.DEFAULT);
|
||||
this._settings.bind('isolate-monitors',
|
||||
this._builder.get_object('application_button_monitor_isolation_button'),
|
||||
'active',
|
||||
Gio.SettingsBindFlags.DEFAULT);
|
||||
this._settings.bind('show-windows-preview',
|
||||
this._builder.get_object('windows_preview_button'),
|
||||
'active',
|
||||
Gio.SettingsBindFlags.DEFAULT);
|
||||
this._settings.bind('multi-monitor',
|
||||
this._builder.get_object('multi_monitor_button'),
|
||||
'active',
|
||||
Gio.SettingsBindFlags.DEFAULT);
|
||||
this._settings.bind('show-favorites',
|
||||
this._builder.get_object('show_favorite_switch'),
|
||||
'active',
|
||||
Gio.SettingsBindFlags.DEFAULT);
|
||||
this._settings.bind('show-trash',
|
||||
this._builder.get_object('show_trash_switch'),
|
||||
'active',
|
||||
Gio.SettingsBindFlags.DEFAULT);
|
||||
this._settings.bind('show-mounts',
|
||||
this._builder.get_object('show_mounts_switch'),
|
||||
'active',
|
||||
Gio.SettingsBindFlags.DEFAULT);
|
||||
this._settings.bind('show-show-apps-button',
|
||||
this._builder.get_object('show_applications_button_switch'),
|
||||
'active',
|
||||
Gio.SettingsBindFlags.DEFAULT);
|
||||
this._settings.bind('show-apps-at-top',
|
||||
this._builder.get_object('application_button_first_button'),
|
||||
'active',
|
||||
Gio.SettingsBindFlags.DEFAULT);
|
||||
this._settings.bind('show-show-apps-button',
|
||||
this._builder.get_object('application_button_first_button'),
|
||||
'sensitive',
|
||||
Gio.SettingsBindFlags.DEFAULT);
|
||||
this._settings.bind('animate-show-apps',
|
||||
this._builder.get_object('application_button_animation_button'),
|
||||
'active',
|
||||
Gio.SettingsBindFlags.DEFAULT);
|
||||
this._settings.bind('show-show-apps-button',
|
||||
this._builder.get_object('application_button_animation_button'),
|
||||
'sensitive',
|
||||
Gio.SettingsBindFlags.DEFAULT);
|
||||
|
||||
|
||||
// Behavior panel
|
||||
|
||||
this._settings.bind('hot-keys',
|
||||
this._builder.get_object('hot_keys_switch'),
|
||||
'active',
|
||||
Gio.SettingsBindFlags.DEFAULT);
|
||||
this._settings.bind('hot-keys',
|
||||
this._builder.get_object('overlay_button'),
|
||||
'sensitive',
|
||||
Gio.SettingsBindFlags.DEFAULT);
|
||||
|
||||
this._builder.get_object('click_action_combo').set_active(this._settings.get_enum('click-action'));
|
||||
this._builder.get_object('click_action_combo').connect('changed', (widget) => {
|
||||
this._settings.set_enum('click-action', widget.get_active());
|
||||
});
|
||||
|
||||
this._builder.get_object('scroll_action_combo').set_active(this._settings.get_enum('scroll-action'));
|
||||
this._builder.get_object('scroll_action_combo').connect('changed', (widget) => {
|
||||
this._settings.set_enum('scroll-action', widget.get_active());
|
||||
});
|
||||
|
||||
this._builder.get_object('shift_click_action_combo').connect('changed', (widget) => {
|
||||
this._settings.set_enum('shift-click-action', widget.get_active());
|
||||
});
|
||||
|
||||
this._builder.get_object('middle_click_action_combo').connect('changed', (widget) => {
|
||||
this._settings.set_enum('middle-click-action', widget.get_active());
|
||||
});
|
||||
this._builder.get_object('shift_middle_click_action_combo').connect('changed', (widget) => {
|
||||
this._settings.set_enum('shift-middle-click-action', widget.get_active());
|
||||
});
|
||||
|
||||
// Create dialog for number overlay options
|
||||
this._builder.get_object('overlay_button').connect('clicked', () => {
|
||||
|
||||
let dialog = new Gtk.Dialog({
|
||||
title: __('Show dock and application numbers'),
|
||||
transient_for: this.widget.get_root(),
|
||||
use_header_bar: true,
|
||||
modal: true
|
||||
});
|
||||
|
||||
// GTK+ leaves positive values for application-defined response ids.
|
||||
// Use +1 for the reset action
|
||||
dialog.add_button(__('Reset to defaults'), 1);
|
||||
|
||||
let box = this._builder.get_object('box_overlay_shortcut');
|
||||
dialog.get_content_area().append(box);
|
||||
|
||||
this._builder.get_object('overlay_switch').set_active(this._settings.get_boolean('hotkeys-overlay'));
|
||||
this._builder.get_object('show_dock_switch').set_active(this._settings.get_boolean('hotkeys-show-dock'));
|
||||
|
||||
// We need to update the shortcut 'strv' when the text is modified
|
||||
this._settings.connect('changed::shortcut-text', () => { setShortcut(this._settings); });
|
||||
this._settings.bind('shortcut-text',
|
||||
this._builder.get_object('shortcut_entry'),
|
||||
'text',
|
||||
Gio.SettingsBindFlags.DEFAULT);
|
||||
|
||||
this._settings.bind('hotkeys-overlay',
|
||||
this._builder.get_object('overlay_switch'),
|
||||
'active',
|
||||
Gio.SettingsBindFlags.DEFAULT);
|
||||
this._settings.bind('hotkeys-show-dock',
|
||||
this._builder.get_object('show_dock_switch'),
|
||||
'active',
|
||||
Gio.SettingsBindFlags.DEFAULT);
|
||||
this._settings.bind('shortcut-timeout',
|
||||
this._builder.get_object('timeout_spinbutton'),
|
||||
'value',
|
||||
Gio.SettingsBindFlags.DEFAULT);
|
||||
|
||||
dialog.connect('response', (dialog, id) => {
|
||||
if (id == 1) {
|
||||
// restore default settings for the relevant keys
|
||||
let keys = ['shortcut-text', 'hotkeys-overlay', 'hotkeys-show-dock', 'shortcut-timeout'];
|
||||
keys.forEach(function (val) {
|
||||
this._settings.set_value(val, this._settings.get_default_value(val));
|
||||
}, this);
|
||||
} else {
|
||||
// remove the settings box so it doesn't get destroyed;
|
||||
dialog.get_content_area().remove(box);
|
||||
dialog.destroy();
|
||||
}
|
||||
return;
|
||||
});
|
||||
|
||||
dialog.present();
|
||||
});
|
||||
|
||||
// Create dialog for middle-click options
|
||||
this._builder.get_object('middle_click_options_button').connect('clicked', () => {
|
||||
|
||||
let dialog = new Gtk.Dialog({
|
||||
title: __('Customize middle-click behavior'),
|
||||
transient_for: this.widget.get_root(),
|
||||
use_header_bar: true,
|
||||
modal: true
|
||||
});
|
||||
|
||||
// GTK+ leaves positive values for application-defined response ids.
|
||||
// Use +1 for the reset action
|
||||
dialog.add_button(__('Reset to defaults'), 1);
|
||||
|
||||
let box = this._builder.get_object('box_middle_click_options');
|
||||
dialog.get_content_area().append(box);
|
||||
|
||||
this._builder.get_object('shift_click_action_combo').set_active(this._settings.get_enum('shift-click-action'));
|
||||
|
||||
this._builder.get_object('middle_click_action_combo').set_active(this._settings.get_enum('middle-click-action'));
|
||||
|
||||
this._builder.get_object('shift_middle_click_action_combo').set_active(this._settings.get_enum('shift-middle-click-action'));
|
||||
|
||||
this._settings.bind('shift-click-action',
|
||||
this._builder.get_object('shift_click_action_combo'),
|
||||
'active-id',
|
||||
Gio.SettingsBindFlags.DEFAULT);
|
||||
this._settings.bind('middle-click-action',
|
||||
this._builder.get_object('middle_click_action_combo'),
|
||||
'active-id',
|
||||
Gio.SettingsBindFlags.DEFAULT);
|
||||
this._settings.bind('shift-middle-click-action',
|
||||
this._builder.get_object('shift_middle_click_action_combo'),
|
||||
'active-id',
|
||||
Gio.SettingsBindFlags.DEFAULT);
|
||||
|
||||
dialog.connect('response', (dialog, id) => {
|
||||
if (id == 1) {
|
||||
// restore default settings for the relevant keys
|
||||
let keys = ['shift-click-action', 'middle-click-action', 'shift-middle-click-action'];
|
||||
keys.forEach(function (val) {
|
||||
this._settings.set_value(val, this._settings.get_default_value(val));
|
||||
}, this);
|
||||
this._builder.get_object('shift_click_action_combo').set_active(this._settings.get_enum('shift-click-action'));
|
||||
this._builder.get_object('middle_click_action_combo').set_active(this._settings.get_enum('middle-click-action'));
|
||||
this._builder.get_object('shift_middle_click_action_combo').set_active(this._settings.get_enum('shift-middle-click-action'));
|
||||
} else {
|
||||
// remove the settings box so it doesn't get destroyed;
|
||||
dialog.get_content_area().remove(box);
|
||||
dialog.destroy();
|
||||
}
|
||||
return;
|
||||
});
|
||||
|
||||
dialog.present();
|
||||
|
||||
});
|
||||
|
||||
// Appearance Panel
|
||||
|
||||
this._settings.bind('apply-custom-theme', this._builder.get_object('customize_theme'), 'sensitive', Gio.SettingsBindFlags.INVERT_BOOLEAN | Gio.SettingsBindFlags.GET);
|
||||
this._settings.bind('apply-custom-theme', this._builder.get_object('builtin_theme_switch'), 'active', Gio.SettingsBindFlags.DEFAULT);
|
||||
this._settings.bind('custom-theme-shrink', this._builder.get_object('shrink_dash_switch'), 'active', Gio.SettingsBindFlags.DEFAULT);
|
||||
|
||||
// Running indicators
|
||||
this._builder.get_object('running_indicators_combo').set_active(
|
||||
this._settings.get_enum('running-indicator-style')
|
||||
);
|
||||
this._builder.get_object('running_indicators_combo').connect(
|
||||
'changed',
|
||||
(widget) => {
|
||||
this._settings.set_enum('running-indicator-style', widget.get_active());
|
||||
}
|
||||
);
|
||||
|
||||
if (this._settings.get_enum('running-indicator-style') == RunningIndicatorStyle.DEFAULT)
|
||||
this._builder.get_object('running_indicators_advance_settings_button').set_sensitive(false);
|
||||
|
||||
this._settings.connect('changed::running-indicator-style', () => {
|
||||
if (this._settings.get_enum('running-indicator-style') == RunningIndicatorStyle.DEFAULT)
|
||||
this._builder.get_object('running_indicators_advance_settings_button').set_sensitive(false);
|
||||
else
|
||||
this._builder.get_object('running_indicators_advance_settings_button').set_sensitive(true);
|
||||
});
|
||||
|
||||
// Create dialog for running indicators advanced settings
|
||||
this._builder.get_object('running_indicators_advance_settings_button').connect('clicked', () => {
|
||||
|
||||
let dialog = new Gtk.Dialog({
|
||||
title: __('Customize running indicators'),
|
||||
transient_for: this.widget.get_root(),
|
||||
use_header_bar: true,
|
||||
modal: true
|
||||
});
|
||||
|
||||
let box = this._builder.get_object('running_dots_advance_settings_box');
|
||||
dialog.get_content_area().append(box);
|
||||
|
||||
this._settings.bind('running-indicator-dominant-color',
|
||||
this._builder.get_object('dominant_color_switch'),
|
||||
'active',
|
||||
Gio.SettingsBindFlags.DEFAULT);
|
||||
|
||||
this._settings.bind('custom-theme-customize-running-dots',
|
||||
this._builder.get_object('dot_style_switch'),
|
||||
'active',
|
||||
Gio.SettingsBindFlags.DEFAULT);
|
||||
this._settings.bind('custom-theme-customize-running-dots',
|
||||
this._builder.get_object('dot_style_settings_box'),
|
||||
'sensitive', Gio.SettingsBindFlags.DEFAULT);
|
||||
|
||||
let rgba = new Gdk.RGBA();
|
||||
rgba.parse(this._settings.get_string('custom-theme-running-dots-color'));
|
||||
this._builder.get_object('dot_color_colorbutton').set_rgba(rgba);
|
||||
|
||||
this._builder.get_object('dot_color_colorbutton').connect('notify::rgba', (button) => {
|
||||
let css = button.rgba.to_string();
|
||||
|
||||
this._settings.set_string('custom-theme-running-dots-color', css);
|
||||
});
|
||||
|
||||
rgba.parse(this._settings.get_string('custom-theme-running-dots-border-color'));
|
||||
this._builder.get_object('dot_border_color_colorbutton').set_rgba(rgba);
|
||||
|
||||
this._builder.get_object('dot_border_color_colorbutton').connect('notify::rgba', (button) => {
|
||||
let css = button.rgba.to_string();
|
||||
|
||||
this._settings.set_string('custom-theme-running-dots-border-color', css);
|
||||
});
|
||||
|
||||
this._settings.bind('custom-theme-running-dots-border-width',
|
||||
this._builder.get_object('dot_border_width_spin_button'),
|
||||
'value',
|
||||
Gio.SettingsBindFlags.DEFAULT);
|
||||
|
||||
|
||||
dialog.connect('response', (dialog, id) => {
|
||||
// remove the settings box so it doesn't get destroyed;
|
||||
dialog.get_content_area().remove(box);
|
||||
dialog.destroy();
|
||||
return;
|
||||
});
|
||||
|
||||
dialog.present();
|
||||
|
||||
});
|
||||
|
||||
this._settings.bind('custom-background-color', this._builder.get_object('custom_background_color_switch'), 'active', Gio.SettingsBindFlags.DEFAULT);
|
||||
this._settings.bind('custom-background-color', this._builder.get_object('custom_background_color'), 'sensitive', Gio.SettingsBindFlags.DEFAULT);
|
||||
|
||||
let rgba = new Gdk.RGBA();
|
||||
rgba.parse(this._settings.get_string('background-color'));
|
||||
this._builder.get_object('custom_background_color').set_rgba(rgba);
|
||||
|
||||
this._builder.get_object('custom_background_color').connect('notify::rgba', (button) => {
|
||||
let css = button.rgba.to_string();
|
||||
|
||||
this._settings.set_string('background-color', css);
|
||||
});
|
||||
|
||||
// Opacity
|
||||
this._builder.get_object('customize_opacity_combo').set_active_id(
|
||||
this._settings.get_enum('transparency-mode').toString()
|
||||
);
|
||||
this._builder.get_object('customize_opacity_combo').connect(
|
||||
'changed',
|
||||
(widget) => {
|
||||
this._settings.set_enum('transparency-mode', parseInt(widget.get_active_id()));
|
||||
}
|
||||
);
|
||||
|
||||
const custom_opacity_scale = this._builder.get_object('custom_opacity_scale');
|
||||
custom_opacity_scale.set_value(this._settings.get_double('background-opacity'));
|
||||
custom_opacity_scale.set_format_value_func((_, value) => {
|
||||
return Math.round(value * 100) + '%';
|
||||
});
|
||||
|
||||
if (this._settings.get_enum('transparency-mode') !== TransparencyMode.FIXED)
|
||||
this._builder.get_object('custom_opacity_scale').set_sensitive(false);
|
||||
|
||||
this._settings.connect('changed::transparency-mode', () => {
|
||||
if (this._settings.get_enum('transparency-mode') !== TransparencyMode.FIXED)
|
||||
this._builder.get_object('custom_opacity_scale').set_sensitive(false);
|
||||
else
|
||||
this._builder.get_object('custom_opacity_scale').set_sensitive(true);
|
||||
});
|
||||
|
||||
if (this._settings.get_enum('transparency-mode') !== TransparencyMode.DYNAMIC) {
|
||||
this._builder.get_object('dynamic_opacity_button').set_sensitive(false);
|
||||
}
|
||||
|
||||
this._settings.connect('changed::transparency-mode', () => {
|
||||
if (this._settings.get_enum('transparency-mode') !== TransparencyMode.DYNAMIC) {
|
||||
this._builder.get_object('dynamic_opacity_button').set_sensitive(false);
|
||||
}
|
||||
else {
|
||||
this._builder.get_object('dynamic_opacity_button').set_sensitive(true);
|
||||
}
|
||||
});
|
||||
|
||||
// Create dialog for transparency advanced settings
|
||||
this._builder.get_object('dynamic_opacity_button').connect('clicked', () => {
|
||||
|
||||
let dialog = new Gtk.Dialog({
|
||||
title: __('Customize opacity'),
|
||||
transient_for: this.widget.get_root(),
|
||||
use_header_bar: true,
|
||||
modal: true
|
||||
});
|
||||
|
||||
let box = this._builder.get_object('advanced_transparency_dialog');
|
||||
dialog.get_content_area().append(box);
|
||||
|
||||
this._settings.bind(
|
||||
'customize-alphas',
|
||||
this._builder.get_object('customize_alphas_switch'),
|
||||
'active',
|
||||
Gio.SettingsBindFlags.DEFAULT
|
||||
);
|
||||
this._settings.bind(
|
||||
'customize-alphas',
|
||||
this._builder.get_object('min_alpha_scale'),
|
||||
'sensitive',
|
||||
Gio.SettingsBindFlags.DEFAULT
|
||||
);
|
||||
this._settings.bind(
|
||||
'customize-alphas',
|
||||
this._builder.get_object('max_alpha_scale'),
|
||||
'sensitive',
|
||||
Gio.SettingsBindFlags.DEFAULT
|
||||
);
|
||||
|
||||
const min_alpha_scale = this._builder.get_object('min_alpha_scale');
|
||||
const max_alpha_scale = this._builder.get_object('max_alpha_scale');
|
||||
min_alpha_scale.set_value(
|
||||
this._settings.get_double('min-alpha')
|
||||
);
|
||||
min_alpha_scale.set_format_value_func((_, value) => {
|
||||
return Math.round(value * 100) + ' %';
|
||||
});
|
||||
max_alpha_scale.set_format_value_func((_, value) => {
|
||||
return Math.round(value * 100) + ' %';
|
||||
});
|
||||
|
||||
max_alpha_scale.set_value(
|
||||
this._settings.get_double('max-alpha')
|
||||
);
|
||||
|
||||
dialog.connect('response', (dialog, id) => {
|
||||
// remove the settings box so it doesn't get destroyed;
|
||||
dialog.get_content_area().remove(box);
|
||||
dialog.destroy();
|
||||
return;
|
||||
});
|
||||
|
||||
dialog.present();
|
||||
});
|
||||
|
||||
|
||||
this._settings.bind('unity-backlit-items',
|
||||
this._builder.get_object('unity_backlit_items_switch'),
|
||||
'active', Gio.SettingsBindFlags.DEFAULT
|
||||
);
|
||||
|
||||
this._settings.bind('force-straight-corner',
|
||||
this._builder.get_object('force_straight_corner_switch'),
|
||||
'active', Gio.SettingsBindFlags.DEFAULT);
|
||||
|
||||
// About Panel
|
||||
|
||||
this._builder.get_object('extension_version').set_label(Me.metadata.version.toString());
|
||||
}
|
||||
});
|
||||
|
||||
function init() {
|
||||
ExtensionUtils.initTranslations();
|
||||
}
|
||||
|
||||
function buildPrefsWidget() {
|
||||
let settings = new Settings();
|
||||
let widget = settings.widget;
|
||||
if (widget.show_all) widget.show_all();
|
||||
return widget;
|
||||
}
|
Binary file not shown.
@ -1,551 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<schemalist gettext-domain="gnome-shell-extensions">
|
||||
<enum id='org.gnome.shell.extensions.dash-to-dock.clickAction'>
|
||||
<value value='0' nick='skip'/>
|
||||
<value value='1' nick='minimize'/>
|
||||
<value value='2' nick='launch'/>
|
||||
<value value='3' nick='cycle-windows'/>
|
||||
<value value='4' nick='minimize-or-overview'/>
|
||||
<value value='5' nick='previews'/>
|
||||
<value value='6' nick='minimize-or-previews'/>
|
||||
<value value='7' nick='focus-or-previews'/>
|
||||
<value value='8' nick='focus-minimize-or-previews'/>
|
||||
<value value='9' nick='quit'/>
|
||||
</enum>
|
||||
<enum id='org.gnome.shell.extensions.dash-to-dock.scrollAction'>
|
||||
<value value='0' nick='do-nothing'/>
|
||||
<value value='1' nick='cycle-windows'/>
|
||||
<value value='2' nick='switch-workspace'/>
|
||||
</enum>
|
||||
<!-- this is mean to Match StSide. LEFT and RIGHT actual position in reversed in
|
||||
rtl languages -->
|
||||
<enum id='org.gnome.shell.extensions.dash-to-dock.position'>
|
||||
<value value='0' nick='TOP'/>
|
||||
<value value='1' nick='RIGHT'/>
|
||||
<value value='2' nick='BOTTOM'/>
|
||||
<value value='3' nick='LEFT'/>
|
||||
</enum>
|
||||
<enum id='org.gnome.shell.extensions.dash-to-dock.intellihide-mode'>
|
||||
<value value='0' nick='ALL_WINDOWS'/>
|
||||
<value value='1' nick='FOCUS_APPLICATION_WINDOWS'/>
|
||||
<value value='2' nick='MAXIMIZED_WINDOWS'/>
|
||||
</enum>
|
||||
<enum id='org.gnome.shell.extensions.dash-to-dock.transparency-mode'>
|
||||
<value value='0' nick='DEFAULT'/>
|
||||
<value value='1' nick='FIXED'/>
|
||||
<value value='3' nick='DYNAMIC'/>
|
||||
</enum>
|
||||
<enum id='org.gnome.shell.extensions.dash-to-dock.running-indicator-style'>
|
||||
<value value='0' nick='DEFAULT'/>
|
||||
<value value='1' nick='DOTS'/>
|
||||
<value value='2' nick='SQUARES'/>
|
||||
<value value='3' nick='DASHES'/>
|
||||
<value value='4' nick='SEGMENTED'/>
|
||||
<value value='5' nick='SOLID'/>
|
||||
<value value='6' nick='CILIORA'/>
|
||||
<value value='7' nick='METRO'/>
|
||||
</enum>
|
||||
<schema path="/org/gnome/shell/extensions/dash-to-dock/" id="org.gnome.shell.extensions.dash-to-dock">
|
||||
<key name="dock-position" enum="org.gnome.shell.extensions.dash-to-dock.position">
|
||||
<default>'BOTTOM'</default>
|
||||
<summary>Dock position</summary>
|
||||
<description>Dock is shown on the Left, Right, Top or Bottom side of the screen.</description>
|
||||
</key>
|
||||
<key type="d" name="animation-time">
|
||||
<default>0.2</default>
|
||||
<summary>Animation time</summary>
|
||||
<description>Sets the time duration of the autohide effect.</description>
|
||||
</key>
|
||||
<key type="d" name="show-delay">
|
||||
<default>0.25</default>
|
||||
<summary>Show delay</summary>
|
||||
<description>Sets the delay after the mouse reaches the screen border before showing the dock.</description>
|
||||
</key>
|
||||
<key type="d" name="hide-delay">
|
||||
<default>0.20</default>
|
||||
<summary>Show delay</summary>
|
||||
<description>Sets the delay after the mouse left the dock before hiding it.</description>
|
||||
</key>
|
||||
<key type="b" name="custom-background-color">
|
||||
<default>false</default>
|
||||
<summary>Set a custom dash background background color</summary>
|
||||
<description>Sets the color for the dash background.</description>
|
||||
</key>
|
||||
<key type="s" name="background-color">
|
||||
<default>"#ffffff"</default>
|
||||
<summary>Dash background color.</summary>
|
||||
<description>Customize the background color of the dash.</description>
|
||||
</key>
|
||||
<key name="transparency-mode" enum="org.gnome.shell.extensions.dash-to-dock.transparency-mode">
|
||||
<default>'DEFAULT'</default>
|
||||
<summary>Transparency mode for the dock</summary>
|
||||
<description>FIXED: constant transparency. DYNAMIC: dock takes the opaque style only when windows are close to it.</description>
|
||||
</key>
|
||||
<key name="running-indicator-style" enum="org.gnome.shell.extensions.dash-to-dock.running-indicator-style">
|
||||
<default>'DEFAULT'</default>
|
||||
<summary>...</summary>
|
||||
<description>DEFAULT: .... DOTS: ....</description>
|
||||
</key>
|
||||
<key type="b" name="running-indicator-dominant-color">
|
||||
<default>false</default>
|
||||
<summary>Use application icon dominant color for the indicator color</summary>
|
||||
<description></description>
|
||||
</key>
|
||||
<key type="b" name="customize-alphas">
|
||||
<default>false</default>
|
||||
<summary>Manually set the min and max opacity</summary>
|
||||
<description>For the dynamic mode, the min/max opacity values will be given by 'min-alpha' and 'max-alpha'.</description>
|
||||
</key>
|
||||
<key type="d" name="min-alpha">
|
||||
<default>0.2</default>
|
||||
<summary>Opacity of the dash background when free-floating</summary>
|
||||
<description>Sets the opacity of the dash background when no windows are close.</description>
|
||||
</key>
|
||||
<key type="d" name="max-alpha">
|
||||
<default>0.8</default>
|
||||
<summary>Opacity of the dash background when windows are close.</summary>
|
||||
<description>Sets the opacity of the dash background when windows are close.</description>
|
||||
</key>
|
||||
<key type="d" name="background-opacity">
|
||||
<default>0.8</default>
|
||||
<summary>Opacity of the dash background</summary>
|
||||
<description>Sets the opacity of the dash background when in autohide mode.</description>
|
||||
</key>
|
||||
<key type="b" name="intellihide">
|
||||
<default>true</default>
|
||||
<summary>Dock dodges windows</summary>
|
||||
<description>Enable or disable intellihide mode</description>
|
||||
</key>
|
||||
<key name="intellihide-mode" enum="org.gnome.shell.extensions.dash-to-dock.intellihide-mode">
|
||||
<default>'FOCUS_APPLICATION_WINDOWS'</default>
|
||||
<summary>Define which windows are considered for intellihide.</summary>
|
||||
<description></description>
|
||||
</key>
|
||||
<key type="b" name="autohide">
|
||||
<default>true</default>
|
||||
<summary>Dock shown on mouse over</summary>
|
||||
<description>Enable or disable autohide mode</description>
|
||||
</key>
|
||||
<key type="b" name="require-pressure-to-show">
|
||||
<default>true</default>
|
||||
<summary>Require pressure to show dash</summary>
|
||||
<description>Enable or disable requiring pressure to show the dash</description>
|
||||
</key>
|
||||
<key type="d" name="pressure-threshold">
|
||||
<default>100</default>
|
||||
<summary>Pressure threshold</summary>
|
||||
<description>Sets how much pressure is needed to show the dash.</description>
|
||||
</key>
|
||||
<key type="b" name="autohide-in-fullscreen">
|
||||
<default>false</default>
|
||||
<summary>Enable autohide in fullscreen mode.</summary>
|
||||
<description>Enable autohide in fullscreen mode.</description>
|
||||
</key>
|
||||
<key type="b" name="dock-fixed">
|
||||
<default>false</default>
|
||||
<summary>Dock always visible</summary>
|
||||
<description>Dock is always visible</description>
|
||||
</key>
|
||||
<key type="b" name="scroll-switch-workspace">
|
||||
<default>true</default>
|
||||
<summary>Switch workspace by scrolling over the dock</summary>
|
||||
<description>Add the possibility to switch workspace by mouse scrolling over the dock.</description>
|
||||
</key>
|
||||
<key type="i" name="dash-max-icon-size">
|
||||
<default>48</default>
|
||||
<summary>Maximum dash icon size</summary>
|
||||
<description>Set the allowed maximum dash icon size. Allowed range: 16..64.</description>
|
||||
</key>
|
||||
<key type="b" name="icon-size-fixed">
|
||||
<default>false</default>
|
||||
<summary>Fixed icon size</summary>
|
||||
<description>Keep the icon size fived by scrolling the dock.</description>
|
||||
</key>
|
||||
<key type="b" name="apply-custom-theme">
|
||||
<default>false</default>
|
||||
<summary>Apply custom theme</summary>
|
||||
<description>Apply customization to the dash appearance</description>
|
||||
</key>
|
||||
<key type="b" name="custom-theme-shrink">
|
||||
<default>false</default>
|
||||
<summary>TODO</summary>
|
||||
<description>TODO</description>
|
||||
</key>
|
||||
<key type="b" name="custom-theme-customize-running-dots">
|
||||
<default>false</default>
|
||||
<summary>Customize the style of the running application indicators.</summary>
|
||||
<description>Customize the style of the running application indicators.</description>
|
||||
</key>
|
||||
<key type="s" name="custom-theme-running-dots-color">
|
||||
<default>"#ffffff"</default>
|
||||
<summary>Running application indicators color</summary>
|
||||
<description>Customize the color of the running application indicators.</description>
|
||||
</key>
|
||||
<key type="s" name="custom-theme-running-dots-border-color">
|
||||
<default>"#ffffff"</default>
|
||||
<summary>Running application indicators border color.</summary>
|
||||
<description>Customize the border color of the running application indicators.</description>
|
||||
</key>
|
||||
<key type="i" name="custom-theme-running-dots-border-width">
|
||||
<default>0</default>
|
||||
<summary>Running application indicators border width.</summary>
|
||||
<description>Customize the border width of the running application indicators.</description>
|
||||
</key>
|
||||
<key type="b" name="show-running">
|
||||
<default>true</default>
|
||||
<summary>Show running apps</summary>
|
||||
<description>Show or hide running applications icons in the dash</description>
|
||||
</key>
|
||||
<key type="b" name="isolate-workspaces">
|
||||
<default>false</default>
|
||||
<summary>Provide workspace isolation</summary>
|
||||
<description>Dash shows only windows from the currentworkspace</description>
|
||||
</key>
|
||||
<key type="b" name="isolate-monitors">
|
||||
<default>false</default>
|
||||
<summary>Provide monitor isolation</summary>
|
||||
<description>Dash shows only windows from the monitor</description>
|
||||
</key>
|
||||
<key type="b" name="show-windows-preview">
|
||||
<default>true</default>
|
||||
<summary>Show preview of the open windows</summary>
|
||||
<description>Replace open windows list with windows previews</description>
|
||||
</key>
|
||||
<key type="b" name="show-favorites">
|
||||
<default>true</default>
|
||||
<summary>Show favorites apps</summary>
|
||||
<description>Show or hide favorite applications icons in the dash</description>
|
||||
</key>
|
||||
<key type="b" name="show-trash">
|
||||
<default>true</default>
|
||||
<summary>Show trash can</summary>
|
||||
<description>Show or hide the trash can icon in the dash</description>
|
||||
</key>
|
||||
<key type="b" name="show-mounts">
|
||||
<default>true</default>
|
||||
<summary>Show mounted volumes and devices</summary>
|
||||
<description>Show or hide mounted volume and device icons in the dash</description>
|
||||
</key>
|
||||
<key type="b" name="show-show-apps-button">
|
||||
<default>true</default>
|
||||
<summary>Show applications button</summary>
|
||||
<description>Show applications button in the dash</description>
|
||||
</key>
|
||||
<key type="b" name="show-apps-at-top">
|
||||
<default>false</default>
|
||||
<summary>Show application button on the left</summary>
|
||||
<description>Show application button on the left of the dash</description>
|
||||
</key>
|
||||
<key type="b" name="animate-show-apps">
|
||||
<default>true</default>
|
||||
<summary>Animate Show Applications from the desktop</summary>
|
||||
<description>Animate Show Applications from the desktop</description>
|
||||
</key>
|
||||
<key type="b" name="bolt-support">
|
||||
<default>true</default>
|
||||
<summary>Basic compatibility with bolt extensions</summary>
|
||||
<description>Make the extension work properly when bolt extensions is enabled</description>
|
||||
</key>
|
||||
<key type="d" name="height-fraction">
|
||||
<default>0.90</default>
|
||||
<summary>Dock max height (fraction of available space)</summary>
|
||||
</key>
|
||||
<key type="b" name="extend-height">
|
||||
<default>false</default>
|
||||
<summary>Extend the dock container to all the available height</summary>
|
||||
</key>
|
||||
<key type="i" name="preferred-monitor">
|
||||
<default>-1</default>
|
||||
<summary>Monitor on which putting the dock</summary>
|
||||
<description>Set on which monitor to put the dock, use -1 for the primary one</description>
|
||||
</key>
|
||||
<key type="b" name="multi-monitor">
|
||||
<default>false</default>
|
||||
<summary>Enable multi-monitor docks</summary>
|
||||
<description>Show a dock on every monitor</description>
|
||||
</key>
|
||||
<key type="b" name="minimize-shift">
|
||||
<default>true</default>
|
||||
<summary>Minimize on shift+click</summary>
|
||||
</key>
|
||||
<key type="b" name="activate-single-window">
|
||||
<default>true</default>
|
||||
<summary>Activate only one window</summary>
|
||||
</key>
|
||||
<key name="click-action" enum="org.gnome.shell.extensions.dash-to-dock.clickAction">
|
||||
<default>'cycle-windows'</default>
|
||||
<summary>Action when clicking on a running app</summary>
|
||||
<description>Set the action that is executed when clicking on the icon of a running application</description>
|
||||
</key>
|
||||
<key name="scroll-action" enum="org.gnome.shell.extensions.dash-to-dock.scrollAction">
|
||||
<default>'do-nothing'</default>
|
||||
<summary>Action when scrolling app</summary>
|
||||
<description>Set the action that is executed when scrolling on the application icon</description>
|
||||
</key>
|
||||
<key name="shift-click-action" enum="org.gnome.shell.extensions.dash-to-dock.clickAction">
|
||||
<default>'minimize'</default>
|
||||
<summary>Action when shift+clicking on a running app</summary>
|
||||
<description>Set the action that is executed when shift+clicking on the icon of a running application</description>
|
||||
</key>
|
||||
<key name="middle-click-action" enum="org.gnome.shell.extensions.dash-to-dock.clickAction">
|
||||
<default>'launch'</default>
|
||||
<summary>Action when clicking on a running app</summary>
|
||||
<description>Set the action that is executed when middle-clicking on the icon of a running application</description>
|
||||
</key>
|
||||
<key name="shift-middle-click-action" enum="org.gnome.shell.extensions.dash-to-dock.clickAction">
|
||||
<default>'launch'</default>
|
||||
<summary>Action when clicking on a running app</summary>
|
||||
<description>Set the action that is executed when shift+middle-clicking on the icon of a running application</description>
|
||||
</key>
|
||||
<key type="b" name="hot-keys">
|
||||
<default>true</default>
|
||||
<summary>Super Hot-Keys</summary>
|
||||
<description>Launch and switch between dash items using Super+(0-9)</description>
|
||||
</key>
|
||||
<key type="b" name="hotkeys-show-dock">
|
||||
<default>true</default>
|
||||
<summary>Show the dock when using the hotkeys</summary>
|
||||
<description>The dock will be quickly shown so that the number-overlay is visible and app activation is easier</description>
|
||||
</key>
|
||||
<key type="s" name="shortcut-text">
|
||||
<default>"<Super>q"</default>
|
||||
<summary>Keybinding to show the dock and the number overlay.</summary>
|
||||
<description>Behavior depends on hotkeys-show-dock and hotkeys-overlay.</description>
|
||||
</key>
|
||||
<key type="as" name="shortcut">
|
||||
<default><![CDATA[['<Super>q']]]></default>
|
||||
<summary>Keybinding to show the dock and the number overlay.</summary>
|
||||
<description>Behavior depends on hotkeys-show-dock and hotkeys-overlay.</description>
|
||||
</key>
|
||||
<key type="d" name="shortcut-timeout">
|
||||
<default>2</default>
|
||||
<summary>Timeout to hide the dock</summary>
|
||||
<description>Sets the time duration before the dock is hidden again.</description>
|
||||
</key>
|
||||
<key type="b" name="hotkeys-overlay">
|
||||
<default>true</default>
|
||||
<summary>Show the dock when using the hotkeys</summary>
|
||||
<description>The dock will be quickly shown so that the number-overlay is visible and app activation is easier</description>
|
||||
</key>
|
||||
<key name="app-ctrl-hotkey-1" type="as">
|
||||
<default><![CDATA[['<Ctrl><Super>1']]]></default>
|
||||
<summary>Keybinding to launch 1st dash app</summary>
|
||||
<description>
|
||||
Keybinding to launch 1st app.
|
||||
</description>
|
||||
</key>
|
||||
<key name="app-ctrl-hotkey-2" type="as">
|
||||
<default><![CDATA[['<Ctrl><Super>2']]]></default>
|
||||
<summary>Keybinding to launch 2nd dash app</summary>
|
||||
<description>
|
||||
Keybinding to launch 2nd app.
|
||||
</description>
|
||||
</key>
|
||||
<key name="app-ctrl-hotkey-3" type="as">
|
||||
<default><![CDATA[['<Ctrl><Super>3']]]></default>
|
||||
<summary>Keybinding to launch 3rd dash app</summary>
|
||||
<description>
|
||||
Keybinding to launch 3rd app.
|
||||
</description>
|
||||
</key>
|
||||
<key name="app-ctrl-hotkey-4" type="as">
|
||||
<default><![CDATA[['<Ctrl><Super>4']]]></default>
|
||||
<summary>Keybinding to launch 4th dash app</summary>
|
||||
<description>
|
||||
Keybinding to launch 4th app.
|
||||
</description>
|
||||
</key>
|
||||
<key name="app-ctrl-hotkey-5" type="as">
|
||||
<default><![CDATA[['<Ctrl><Super>5']]]></default>
|
||||
<summary>Keybinding to launch 5th dash app</summary>
|
||||
<description>
|
||||
Keybinding to launch 5th app.
|
||||
</description>
|
||||
</key>
|
||||
<key name="app-ctrl-hotkey-6" type="as">
|
||||
<default><![CDATA[['<Ctrl><Super>6']]]></default>
|
||||
<summary>Keybinding to launch 6th dash app</summary>
|
||||
<description>
|
||||
Keybinding to launch 6th app.
|
||||
</description>
|
||||
</key>
|
||||
<key name="app-ctrl-hotkey-7" type="as">
|
||||
<default><![CDATA[['<Ctrl><Super>7']]]></default>
|
||||
<summary>Keybinding to launch 7th dash app</summary>
|
||||
<description>
|
||||
Keybinding to launch 7th app.
|
||||
</description>
|
||||
</key>
|
||||
<key name="app-ctrl-hotkey-8" type="as">
|
||||
<default><![CDATA[['<Ctrl><Super>8']]]></default>
|
||||
<summary>Keybinding to launch 8th dash app</summary>
|
||||
<description>
|
||||
Keybinding to launch 8th app.
|
||||
</description>
|
||||
</key>
|
||||
<key name="app-ctrl-hotkey-9" type="as">
|
||||
<default><![CDATA[['<Ctrl><Super>9']]]></default>
|
||||
<summary>Keybinding to launch 9th dash app</summary>
|
||||
<description>
|
||||
Keybinding to launch 9th app.
|
||||
</description>
|
||||
</key>
|
||||
<key name="app-ctrl-hotkey-10" type="as">
|
||||
<default><![CDATA[['<Ctrl><Super>0']]]></default>
|
||||
<summary>Keybinding to launch 10th dash app</summary>
|
||||
<description>
|
||||
Keybinding to launch 10th app.
|
||||
</description>
|
||||
</key>
|
||||
<key name="app-shift-hotkey-1" type="as">
|
||||
<default><![CDATA[['<Shift><Super>1']]]></default>
|
||||
<summary>Keybinding to trigger 1st dash app with shift behavior</summary>
|
||||
<description>
|
||||
Keybinding to trigger 1st app with shift behavior.
|
||||
</description>
|
||||
</key>
|
||||
<key name="app-shift-hotkey-2" type="as">
|
||||
<default><![CDATA[['<Shift><Super>2']]]></default>
|
||||
<summary>Keybinding to trigger 2nd dash app with shift behavior</summary>
|
||||
<description>
|
||||
Keybinding to trigger 2nd app with shift behavior.
|
||||
</description>
|
||||
</key>
|
||||
<key name="app-shift-hotkey-3" type="as">
|
||||
<default><![CDATA[['<Shift><Super>3']]]></default>
|
||||
<summary>Keybinding to trigger 3rd dash app with shift behavior</summary>
|
||||
<description>
|
||||
Keybinding to trigger 3rd app with shift behavior.
|
||||
</description>
|
||||
</key>
|
||||
<key name="app-shift-hotkey-4" type="as">
|
||||
<default><![CDATA[['<Shift><Super>4']]]></default>
|
||||
<summary>Keybinding to trigger 4th dash app with shift behavior</summary>
|
||||
<description>
|
||||
Keybinding to trigger 4th app with shift behavior.
|
||||
</description>
|
||||
</key>
|
||||
<key name="app-shift-hotkey-5" type="as">
|
||||
<default><![CDATA[['<Shift><Super>5']]]></default>
|
||||
<summary>Keybinding to trigger 5th dash app with shift behavior</summary>
|
||||
<description>
|
||||
Keybinding to trigger 5th app with shift behavior.
|
||||
</description>
|
||||
</key>
|
||||
<key name="app-shift-hotkey-6" type="as">
|
||||
<default><![CDATA[['<Shift><Super>6']]]></default>
|
||||
<summary>Keybinding to trigger 6th dash app with shift behavior</summary>
|
||||
<description>
|
||||
Keybinding to trigger 6th app with shift behavior.
|
||||
</description>
|
||||
</key>
|
||||
<key name="app-shift-hotkey-7" type="as">
|
||||
<default><![CDATA[['<Shift><Super>7']]]></default>
|
||||
<summary>Keybinding to trigger 7th dash app with shift behavior</summary>
|
||||
<description>
|
||||
Keybinding to trigger 7th app with shift behavior.
|
||||
</description>
|
||||
</key>
|
||||
<key name="app-shift-hotkey-8" type="as">
|
||||
<default><![CDATA[['<Shift><Super>8']]]></default>
|
||||
<summary>Keybinding to trigger 8th dash app with shift behavior</summary>
|
||||
<description>
|
||||
Keybinding to trigger 8th app with shift behavior.
|
||||
</description>
|
||||
</key>
|
||||
<key name="app-shift-hotkey-9" type="as">
|
||||
<default><![CDATA[['<Shift><Super>9']]]></default>
|
||||
<summary>Keybinding to trigger 9th dash app with shift behavior</summary>
|
||||
<description>
|
||||
Keybinding to trigger 9th app with shift behavior.
|
||||
</description>
|
||||
</key>
|
||||
<key name="app-shift-hotkey-10" type="as">
|
||||
<default><![CDATA[['<Shift><Super>0']]]></default>
|
||||
<summary>Keybinding to trigger 10th dash app with shift behavior</summary>
|
||||
<description>
|
||||
Keybinding to trigger 10th app with shift behavior.
|
||||
</description>
|
||||
</key>
|
||||
<key name="app-hotkey-1" type="as">
|
||||
<default><![CDATA[['<Super>1']]]></default>
|
||||
<summary>Keybinding to trigger 1st dash app</summary>
|
||||
<description>
|
||||
Keybinding to either show or launch the 1st application in the dash.
|
||||
</description>
|
||||
</key>
|
||||
<key name="app-hotkey-2" type="as">
|
||||
<default><![CDATA[['<Super>2']]]></default>
|
||||
<summary>Keybinding to trigger 2nd dash app</summary>
|
||||
<description>
|
||||
Keybinding to either show or launch the 2nd application in the dash.
|
||||
</description>
|
||||
</key>
|
||||
<key name="app-hotkey-3" type="as">
|
||||
<default><![CDATA[['<Super>3']]]></default>
|
||||
<summary>Keybinding to trigger 3rd dash app</summary>
|
||||
<description>
|
||||
Keybinding to either show or launch the 3rd application in the dash.
|
||||
</description>
|
||||
</key>
|
||||
<key name="app-hotkey-4" type="as">
|
||||
<default><![CDATA[['<Super>4']]]></default>
|
||||
<summary>Keybinding to trigger 4th dash app</summary>
|
||||
<description>
|
||||
Keybinding to either show or launch the 4th application in the dash.
|
||||
</description>
|
||||
</key>
|
||||
<key name="app-hotkey-5" type="as">
|
||||
<default><![CDATA[['<Super>5']]]></default>
|
||||
<summary>Keybinding to trigger 5th dash app</summary>
|
||||
<description>
|
||||
Keybinding to either show or launch the 5th application in the dash.
|
||||
</description>
|
||||
</key>
|
||||
<key name="app-hotkey-6" type="as">
|
||||
<default><![CDATA[['<Super>6']]]></default>
|
||||
<summary>Keybinding to trigger 6th dash app</summary>
|
||||
<description>
|
||||
Keybinding to either show or launch the 6th application in the dash.
|
||||
</description>
|
||||
</key>
|
||||
<key name="app-hotkey-7" type="as">
|
||||
<default><![CDATA[['<Super>7']]]></default>
|
||||
<summary>Keybinding to trigger 7th dash app</summary>
|
||||
<description>
|
||||
Keybinding to either show or launch the 7th application in the dash.
|
||||
</description>
|
||||
</key>
|
||||
<key name="app-hotkey-8" type="as">
|
||||
<default><![CDATA[['<Super>8']]]></default>
|
||||
<summary>Keybinding to trigger 8th dash app</summary>
|
||||
<description>
|
||||
Keybinding to either show or launch the 8th application in the dash.
|
||||
</description>
|
||||
</key>
|
||||
<key name="app-hotkey-9" type="as">
|
||||
<default><![CDATA[['<Super>9']]]></default>
|
||||
<summary>Keybinding to trigger 9th dash app</summary>
|
||||
<description>
|
||||
Keybinding to either show or launch the 9th application in the dash.
|
||||
</description>
|
||||
</key>
|
||||
<key name="app-hotkey-10" type="as">
|
||||
<default><![CDATA[['<Super>0']]]></default>
|
||||
<summary>Keybinding to trigger 10th dash app</summary>
|
||||
<description>
|
||||
Keybinding to either show or launch the 10th application in the dash.
|
||||
</description>
|
||||
</key>
|
||||
<key name="force-straight-corner" type="b">
|
||||
<default>false</default>
|
||||
<summary>Force straight corners in dash</summary>
|
||||
<description>Make the borders in the dash non rounded</description>
|
||||
</key>
|
||||
<key name="unity-backlit-items" type="b">
|
||||
<default>false</default>
|
||||
<summary>Enable unity7 like glossy backlit items</summary>
|
||||
<description>Emulate the unity7 backlit glossy items behaviour</description>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
@ -1,231 +0,0 @@
|
||||
/* Shrink the dash by reducing padding */
|
||||
#dashtodockContainer.bottom.shrink #dash .dash-background {
|
||||
border: 1px;
|
||||
padding: 2.5px;
|
||||
border-bottom: 0px; }
|
||||
|
||||
#dashtodockContainer.bottom.shrink #dash .dash-item-container .app-well-app,
|
||||
#dashtodockContainer.bottom.shrink #dash .dash-item-container .show-apps {
|
||||
padding: 2.5px; }
|
||||
|
||||
#dashtodockContainer.bottom.extended #dash {
|
||||
margin-top: 0;
|
||||
margin-bottom: 0; }
|
||||
|
||||
#dashtodockContainer.top.shrink #dash .dash-background {
|
||||
border: 1px;
|
||||
padding: 2.5px;
|
||||
border-top: 0px; }
|
||||
|
||||
#dashtodockContainer.top.shrink #dash .dash-item-container .app-well-app,
|
||||
#dashtodockContainer.top.shrink #dash .dash-item-container .show-apps {
|
||||
padding: 2.5px; }
|
||||
|
||||
#dashtodockContainer.top.extended #dash {
|
||||
margin-top: 0;
|
||||
margin-bottom: 0; }
|
||||
|
||||
#dashtodockContainer.left.shrink #dash .dash-background {
|
||||
border: 1px;
|
||||
padding: 2.5px;
|
||||
border-left: 0px; }
|
||||
|
||||
#dashtodockContainer.left.shrink #dash .dash-item-container .app-well-app,
|
||||
#dashtodockContainer.left.shrink #dash .dash-item-container .show-apps {
|
||||
padding: 2.5px; }
|
||||
|
||||
#dashtodockContainer.left.extended #dash {
|
||||
margin-top: 0;
|
||||
margin-bottom: 0; }
|
||||
|
||||
#dashtodockContainer.right.shrink #dash .dash-background {
|
||||
border: 1px;
|
||||
padding: 2.5px;
|
||||
border-right: 0px; }
|
||||
|
||||
#dashtodockContainer.right.shrink #dash .dash-item-container .app-well-app,
|
||||
#dashtodockContainer.right.shrink #dash .dash-item-container .show-apps {
|
||||
padding: 2.5px; }
|
||||
|
||||
#dashtodockContainer.right.extended #dash {
|
||||
margin-top: 0;
|
||||
margin-bottom: 0; }
|
||||
|
||||
#dashtodockContainer.bottom.shrink #dash .dash-background {
|
||||
margin-top: 0;
|
||||
margin-bottom: 4px; }
|
||||
|
||||
#dashtodockContainer.straight-corner #dash .dash-background,
|
||||
#dashtodockContainer.shrink.straight-corner #dash .dash-background {
|
||||
border-radius: 0px; }
|
||||
|
||||
/* Scrollview style */
|
||||
.bottom #dashtodockDashScrollview,
|
||||
.top #dashtodockDashScrollview {
|
||||
-st-hfade-offset: 24px; }
|
||||
|
||||
.left #dashtodockDashScrollview,
|
||||
.right #dashtodockDashScrollview {
|
||||
-st-vfade-offset: 24px; }
|
||||
|
||||
#dashtodockContainer.running-dots .dash-item-container > StButton,
|
||||
#dashtodockContainer.dashtodock .dash-item-container > StButton {
|
||||
transition-duration: 250;
|
||||
background-size: contain; }
|
||||
|
||||
#dashtodockContainer #dash .dash-separator {
|
||||
margin-bottom: 0; }
|
||||
|
||||
#dashtodockContainer #dash .vertical-dash-separator {
|
||||
height: 1px;
|
||||
margin: 6.5px 0;
|
||||
background-color: rgba(238, 238, 236, 0.3); }
|
||||
|
||||
#dashtodockContainer.bottom #dash {
|
||||
margin-top: 0; }
|
||||
#dashtodockContainer.bottom #dash .dash-background {
|
||||
margin-bottom: 8px; }
|
||||
#dashtodockContainer.bottom #dash .dash-item-container .app-well-app,
|
||||
#dashtodockContainer.bottom #dash .dash-item-container .show-apps {
|
||||
padding: 10px 1.5px 18px; }
|
||||
|
||||
#dashtodockContainer.bottom.overview #dash {
|
||||
margin-top: 12px; }
|
||||
|
||||
#dashtodockContainer.bottom.extended #dash .dash-background, #dashtodockContainer.bottom.shrink #dash .dash-background {
|
||||
margin-bottom: 0; }
|
||||
|
||||
#dashtodockContainer.bottom.extended #dash .dash-item-container .app-well-app,
|
||||
#dashtodockContainer.bottom.extended #dash .dash-item-container .show-apps {
|
||||
padding-bottom: 10px; }
|
||||
|
||||
#dashtodockContainer.bottom.shrink #dash .dash-item-container .app-well-app,
|
||||
#dashtodockContainer.bottom.shrink #dash .dash-item-container .show-apps {
|
||||
padding-bottom: 2.5px; }
|
||||
|
||||
#dashtodockContainer.left #dash,
|
||||
#dashtodockContainer.right #dash {
|
||||
padding-left: 4px;
|
||||
padding-right: 4px; }
|
||||
#dashtodockContainer.left #dash .dash-item-container .app-well-app,
|
||||
#dashtodockContainer.left #dash .dash-item-container .show-apps,
|
||||
#dashtodockContainer.right #dash .dash-item-container .app-well-app,
|
||||
#dashtodockContainer.right #dash .dash-item-container .show-apps {
|
||||
/* In vertical we don't want to add additional padding below the button. */
|
||||
padding-bottom: 6px;
|
||||
padding-top: 6px; }
|
||||
|
||||
#dashtodockContainer.left.shrink #dash,
|
||||
#dashtodockContainer.right.shrink #dash {
|
||||
padding-left: 0;
|
||||
padding-right: 0; }
|
||||
|
||||
#dashtodockContainer.top #dash {
|
||||
margin-bottom: 0px; }
|
||||
|
||||
/* Dash height extended to the whole available vertical space */
|
||||
#dashtodockContainer.extended.left #dash, #dashtodockContainer.extended.right #dash, #dashtodockContainer.extended.top #dash, #dashtodockContainer.extended.bottom #dash {
|
||||
padding-top: 0;
|
||||
padding-bottom: 0;
|
||||
padding-left: 0;
|
||||
padding-right: 0; }
|
||||
#dashtodockContainer.extended.left #dash .dash-background, #dashtodockContainer.extended.right #dash .dash-background, #dashtodockContainer.extended.top #dash .dash-background, #dashtodockContainer.extended.bottom #dash .dash-background {
|
||||
border-radius: 0; }
|
||||
|
||||
#dashtodockContainer.extended.top #dash, #dashtodockContainer.extended.bottom #dash {
|
||||
border-left: 0px;
|
||||
border-right: 0px; }
|
||||
#dashtodockContainer.extended.top #dash .dash-background, #dashtodockContainer.extended.bottom #dash .dash-background {
|
||||
padding-left: 0;
|
||||
padding-right: 0; }
|
||||
|
||||
#dashtodockContainer.extended.left #dash, #dashtodockContainer.extended.right #dash {
|
||||
border-top: 0px;
|
||||
border-bottom: 0px; }
|
||||
|
||||
/* Running and focused application style */
|
||||
#dashtodockContainer.running-dots .app-well-app.running > .overview-icon,
|
||||
#dashtodockContainer.dashtodock .app-well-app.running > .overview-icon {
|
||||
background-image: none; }
|
||||
|
||||
#dashtodockContainer.running-dots .app-well-app.focused .overview-icon,
|
||||
#dashtodockContainer.dashtodock .app-well-app.focused .overview-icon {
|
||||
background-color: rgba(238, 238, 236, 0.2); }
|
||||
|
||||
#dashtodockContainer.dashtodock #dash .dash-background {
|
||||
background: #2e3436; }
|
||||
|
||||
#dashtodockContainer.dashtodock .progress-bar {
|
||||
/* Customization of the progress bar style, e.g.:
|
||||
-progress-bar-background: rgba(0.8, 0.8, 0.8, 1);
|
||||
-progress-bar-border: rgba(0.9, 0.9, 0.9, 1);
|
||||
*/ }
|
||||
|
||||
#dashtodockContainer.top #dash .placeholder,
|
||||
#dashtodockContainer.bottom #dash .placeholder {
|
||||
width: 32px;
|
||||
height: 1px; }
|
||||
|
||||
/*
|
||||
* This is applied to a dummy actor. Only the alpha value for the background and border color
|
||||
* and the transition-duration are used
|
||||
*/
|
||||
#dashtodockContainer.dummy-opaque {
|
||||
background-color: rgba(0, 0, 0, 0.8);
|
||||
border-color: rgba(0, 0, 0, 0.4);
|
||||
transition-duration: 300ms; }
|
||||
|
||||
/*
|
||||
* This is applied to a dummy actor. Only the alpha value for the background and border color
|
||||
* and the transition-duration are used
|
||||
*/
|
||||
#dashtodockContainer.dummy-transparent {
|
||||
background-color: rgba(0, 0, 0, 0.2);
|
||||
border-color: rgba(0, 0, 0, 0.1);
|
||||
transition-duration: 500ms; }
|
||||
|
||||
#dashtodockContainer .number-overlay {
|
||||
color: white;
|
||||
background-color: rgba(0, 0, 0, 0.8);
|
||||
text-align: center; }
|
||||
|
||||
#dashtodockContainer .notification-badge {
|
||||
color: white;
|
||||
background-color: red;
|
||||
padding: 0.2em 0.5em;
|
||||
border-radius: 1em;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
margin: 2px; }
|
||||
|
||||
#dashtodockPreviewSeparator.popup-separator-menu-item-horizontal {
|
||||
width: 1px;
|
||||
height: auto;
|
||||
border-right-width: 1px;
|
||||
margin: 32px 0px; }
|
||||
|
||||
.dashtodock-app-well-preview-menu-item {
|
||||
padding: 1em 1em 0.5em 1em; }
|
||||
|
||||
#dashtodockContainer .metro .overview-icon {
|
||||
border-radius: 0px; }
|
||||
|
||||
#dashtodockContainer.bottom .metro.running2.focused,
|
||||
#dashtodockContainer.bottom .metro.running3.focused,
|
||||
#dashtodockContainer.bottom .metro.running4.focused,
|
||||
#dashtodockContainer.top .metro.running2.focused,
|
||||
#dashtodockContainer.top .metro.running3.focused,
|
||||
#dashtodockContainer.top .metro.running4.focused {
|
||||
background-image: url("./media/highlight_stacked_bg.svg");
|
||||
background-position: 0px 0px;
|
||||
background-size: contain; }
|
||||
|
||||
#dashtodockContainer.left .metro.running2.focused,
|
||||
#dashtodockContainer.left .metro.running3.focused,
|
||||
#dashtodockContainer.left .metro.running4.focused,
|
||||
#dashtodockContainer.right .metro.running2.focused,
|
||||
#dashtodockContainer.right .metro.running3.focused,
|
||||
#dashtodockContainer.right .metro.running4.focused {
|
||||
background-image: url("./media/highlight_stacked_bg_h.svg");
|
||||
background-position: 0px 0px;
|
||||
background-size: contain; }
|
@ -1,553 +0,0 @@
|
||||
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
|
||||
|
||||
const Gio = imports.gi.Gio;
|
||||
const GLib = imports.gi.GLib;
|
||||
const Signals = imports.signals;
|
||||
const Meta = imports.gi.Meta;
|
||||
const Shell = imports.gi.Shell;
|
||||
const St = imports.gi.St;
|
||||
const Clutter = imports.gi.Clutter;
|
||||
|
||||
const AppDisplay = imports.ui.appDisplay;
|
||||
const AppFavorites = imports.ui.appFavorites;
|
||||
const Dash = imports.ui.dash;
|
||||
const DND = imports.ui.dnd;
|
||||
const IconGrid = imports.ui.iconGrid;
|
||||
const Main = imports.ui.main;
|
||||
const PopupMenu = imports.ui.popupMenu;
|
||||
const Util = imports.misc.util;
|
||||
const Workspace = imports.ui.workspace;
|
||||
|
||||
const Me = imports.misc.extensionUtils.getCurrentExtension();
|
||||
const Docking = Me.imports.docking;
|
||||
const Utils = Me.imports.utils;
|
||||
|
||||
/*
|
||||
* DEFAULT: transparency given by theme
|
||||
* FIXED: constant transparency chosen by user
|
||||
* DYNAMIC: apply 'transparent' style when no windows are close to the dock
|
||||
* */
|
||||
const TransparencyMode = {
|
||||
DEFAULT: 0,
|
||||
FIXED: 1,
|
||||
DYNAMIC: 3
|
||||
};
|
||||
|
||||
/**
|
||||
* Manage theme customization and custom theme support
|
||||
*/
|
||||
var ThemeManager = class DashToDock_ThemeManager {
|
||||
|
||||
constructor(dock) {
|
||||
this._signalsHandler = new Utils.GlobalSignalsHandler();
|
||||
this._bindSettingsChanges();
|
||||
this._actor = dock;
|
||||
this._dash = dock.dash;
|
||||
|
||||
// initialize colors with generic values
|
||||
this._customizedBackground = {red: 0, green: 0, blue: 0, alpha: 0};
|
||||
this._customizedBorder = {red: 0, green: 0, blue: 0, alpha: 0};
|
||||
this._transparency = new Transparency(dock);
|
||||
|
||||
this._signalsHandler.add([
|
||||
// When theme changes re-obtain default background color
|
||||
St.ThemeContext.get_for_stage (global.stage),
|
||||
'changed',
|
||||
this.updateCustomTheme.bind(this)
|
||||
], [
|
||||
// update :overview pseudoclass
|
||||
Main.overview,
|
||||
'showing',
|
||||
this._onOverviewShowing.bind(this)
|
||||
], [
|
||||
Main.overview,
|
||||
'hiding',
|
||||
this._onOverviewHiding.bind(this)
|
||||
]);
|
||||
|
||||
this._updateCustomStyleClasses();
|
||||
|
||||
// destroy themeManager when the managed actor is destroyed (e.g. extension unload)
|
||||
// in order to disconnect signals
|
||||
this._actor.connect('destroy', this.destroy.bind(this));
|
||||
|
||||
}
|
||||
|
||||
destroy() {
|
||||
this._signalsHandler.destroy();
|
||||
this._transparency.destroy();
|
||||
}
|
||||
|
||||
_onOverviewShowing() {
|
||||
this._actor.add_style_pseudo_class('overview');
|
||||
}
|
||||
|
||||
_onOverviewHiding() {
|
||||
this._actor.remove_style_pseudo_class('overview');
|
||||
}
|
||||
|
||||
_updateDashOpacity() {
|
||||
let newAlpha = Docking.DockManager.settings.get_double('background-opacity');
|
||||
|
||||
let [backgroundColor, borderColor] = this._getDefaultColors();
|
||||
|
||||
if (backgroundColor==null)
|
||||
return;
|
||||
|
||||
// Get the background and border alphas. We check the background alpha
|
||||
// for a minimum of .001 to prevent division by 0 errors
|
||||
let backgroundAlpha = Math.max(Math.round(backgroundColor.alpha/2.55)/100, .001);
|
||||
let borderAlpha = Math.round(borderColor.alpha/2.55)/100;
|
||||
|
||||
// The border and background alphas should remain in sync
|
||||
// We also limit the borderAlpha to a maximum of 1 (full opacity)
|
||||
borderAlpha = Math.min((borderAlpha/backgroundAlpha)*newAlpha, 1);
|
||||
|
||||
this._customizedBackground = 'rgba(' +
|
||||
backgroundColor.red + ',' +
|
||||
backgroundColor.green + ',' +
|
||||
backgroundColor.blue + ',' +
|
||||
newAlpha + ')';
|
||||
|
||||
this._customizedBorder = 'rgba(' +
|
||||
borderColor.red + ',' +
|
||||
borderColor.green + ',' +
|
||||
borderColor.blue + ',' +
|
||||
borderAlpha + ')';
|
||||
|
||||
}
|
||||
|
||||
_getDefaultColors() {
|
||||
// Prevent shell crash if the actor is not on the stage.
|
||||
// It happens enabling/disabling repeatedly the extension
|
||||
if (!this._dash._container.get_stage())
|
||||
return [null, null];
|
||||
|
||||
// Remove custom style
|
||||
let oldStyle = this._dash._container.get_style();
|
||||
this._dash._container.set_style(null);
|
||||
|
||||
let themeNode = this._dash._container.get_theme_node();
|
||||
this._dash._container.set_style(oldStyle);
|
||||
|
||||
let backgroundColor = themeNode.get_background_color();
|
||||
|
||||
// Just in case the theme has different border colors ..
|
||||
// We want to find the inside border-color of the dock because it is
|
||||
// the side most visible to the user. We do this by finding the side
|
||||
// opposite the position
|
||||
let position = Utils.getPosition();
|
||||
let side = position + 2;
|
||||
if (side > 3)
|
||||
side = Math.abs(side - 4);
|
||||
|
||||
let borderColor = themeNode.get_border_color(side);
|
||||
|
||||
return [backgroundColor, borderColor];
|
||||
}
|
||||
|
||||
_updateDashColor() {
|
||||
// Retrieve the color. If needed we will adjust it before passing it to
|
||||
// this._transparency.
|
||||
let [backgroundColor, borderColor] = this._getDefaultColors();
|
||||
|
||||
if (backgroundColor==null)
|
||||
return;
|
||||
|
||||
let settings = Docking.DockManager.settings;
|
||||
|
||||
if (settings.get_boolean('custom-background-color')) {
|
||||
// When applying a custom color, we need to check the alpha value,
|
||||
// if not the opacity will always be overridden by the color below.
|
||||
// Note that if using 'dynamic' transparency modes,
|
||||
// the opacity will be set by the opaque/transparent styles anyway.
|
||||
let newAlpha = Math.round(backgroundColor.alpha/2.55)/100;
|
||||
if (settings.get_enum('transparency-mode') == TransparencyMode.FIXED)
|
||||
newAlpha = settings.get_double('background-opacity');
|
||||
|
||||
backgroundColor = settings.get_string('background-color');
|
||||
|
||||
this._customizedBackground = backgroundColor;
|
||||
|
||||
this._customizedBorder = this._customizedBackground;
|
||||
|
||||
// backgroundColor is a string like rgb(0,0,0)
|
||||
const color = Clutter.Color.from_string(backgroundColor);
|
||||
color.alpha = newAlpha;
|
||||
|
||||
this._transparency.setColor(color);
|
||||
} else {
|
||||
// backgroundColor is a Clutter.Color object
|
||||
this._transparency.setColor(backgroundColor);
|
||||
}
|
||||
}
|
||||
|
||||
_updateCustomStyleClasses() {
|
||||
let settings = Docking.DockManager.settings;
|
||||
|
||||
if (settings.get_boolean('apply-custom-theme'))
|
||||
this._actor.add_style_class_name('dashtodock');
|
||||
else
|
||||
this._actor.remove_style_class_name('dashtodock');
|
||||
|
||||
if (settings.get_boolean('custom-theme-shrink'))
|
||||
this._actor.add_style_class_name('shrink');
|
||||
else
|
||||
this._actor.remove_style_class_name('shrink');
|
||||
|
||||
if (settings.get_enum('running-indicator-style') !== 0)
|
||||
this._actor.add_style_class_name('running-dots');
|
||||
else
|
||||
this._actor.remove_style_class_name('running-dots');
|
||||
|
||||
// If not the built-in theme option is not selected
|
||||
if (!settings.get_boolean('apply-custom-theme')) {
|
||||
if (settings.get_boolean('force-straight-corner'))
|
||||
this._actor.add_style_class_name('straight-corner');
|
||||
else
|
||||
this._actor.remove_style_class_name('straight-corner');
|
||||
} else {
|
||||
this._actor.remove_style_class_name('straight-corner');
|
||||
}
|
||||
}
|
||||
|
||||
updateCustomTheme() {
|
||||
this._updateCustomStyleClasses();
|
||||
this._updateDashOpacity();
|
||||
this._updateDashColor();
|
||||
this._adjustTheme();
|
||||
this._dash._redisplay();
|
||||
}
|
||||
|
||||
/**
|
||||
* Reimported back and adapted from atomdock
|
||||
*/
|
||||
_adjustTheme() {
|
||||
// Prevent shell crash if the actor is not on the stage.
|
||||
// It happens enabling/disabling repeatedly the extension
|
||||
if (!this._dash._background.get_stage())
|
||||
return;
|
||||
|
||||
let settings = Docking.DockManager.settings;
|
||||
|
||||
// Remove prior style edits
|
||||
this._dash._background.set_style(null);
|
||||
this._transparency.disable();
|
||||
|
||||
// If built-in theme is enabled do nothing else
|
||||
if (settings.get_boolean('apply-custom-theme'))
|
||||
return;
|
||||
|
||||
let newStyle = '';
|
||||
let position = Utils.getPosition(settings);
|
||||
|
||||
// obtain theme border settings
|
||||
let themeNode = this._dash._background.get_theme_node();
|
||||
let borderColor = themeNode.get_border_color(St.Side.TOP);
|
||||
let borderWidth = themeNode.get_border_width(St.Side.TOP);
|
||||
|
||||
// We're copying border and corner styles to left border and top-left
|
||||
// corner, also removing bottom border and bottom-right corner styles
|
||||
let borderInner = '';
|
||||
let borderMissingStyle = '';
|
||||
|
||||
if (this._rtl && (position != St.Side.RIGHT))
|
||||
borderMissingStyle = 'border-right: ' + borderWidth + 'px solid ' +
|
||||
borderColor.to_string() + ';';
|
||||
else if (!this._rtl && (position != St.Side.LEFT))
|
||||
borderMissingStyle = 'border-left: ' + borderWidth + 'px solid ' +
|
||||
borderColor.to_string() + ';';
|
||||
|
||||
newStyle = borderMissingStyle;
|
||||
|
||||
// I do call set_style possibly twice so that only the background gets the transition.
|
||||
// The transition-property css rules seems to be unsupported
|
||||
this._dash._background.set_style(newStyle);
|
||||
|
||||
// Customize background
|
||||
let fixedTransparency = settings.get_enum('transparency-mode') == TransparencyMode.FIXED;
|
||||
let defaultTransparency = settings.get_enum('transparency-mode') == TransparencyMode.DEFAULT;
|
||||
if (!defaultTransparency && !fixedTransparency) {
|
||||
this._transparency.enable();
|
||||
}
|
||||
else if (!defaultTransparency || settings.get_boolean('custom-background-color')) {
|
||||
newStyle = newStyle + 'background-color:'+ this._customizedBackground + '; ' +
|
||||
'border-color:'+ this._customizedBorder + '; ' +
|
||||
'transition-delay: 0s; transition-duration: 0.250s;';
|
||||
this._dash._background.set_style(newStyle);
|
||||
}
|
||||
}
|
||||
|
||||
_bindSettingsChanges() {
|
||||
let keys = ['transparency-mode',
|
||||
'customize-alphas',
|
||||
'min-alpha',
|
||||
'max-alpha',
|
||||
'background-opacity',
|
||||
'custom-background-color',
|
||||
'background-color',
|
||||
'apply-custom-theme',
|
||||
'custom-theme-shrink',
|
||||
'custom-theme-running-dots',
|
||||
'extend-height',
|
||||
'force-straight-corner'];
|
||||
|
||||
keys.forEach(function(key) {
|
||||
this._signalsHandler.add([
|
||||
Docking.DockManager.settings,
|
||||
'changed::' + key,
|
||||
this.updateCustomTheme.bind(this)
|
||||
]);
|
||||
}, this);
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* The following class is based on the following upstream commit:
|
||||
* https://git.gnome.org/browse/gnome-shell/commit/?id=447bf55e45b00426ed908b1b1035f472c2466956
|
||||
* Transparency when free-floating
|
||||
*/
|
||||
var Transparency = class DashToDock_Transparency {
|
||||
|
||||
constructor(dock) {
|
||||
this._dash = dock.dash;
|
||||
this._actor = this._dash._container;
|
||||
this._backgroundActor = this._dash._background;
|
||||
this._dockActor = dock;
|
||||
this._dock = dock;
|
||||
this._panel = Main.panel;
|
||||
this._position = Utils.getPosition();
|
||||
|
||||
// All these properties are replaced with the ones in the .dummy-opaque and .dummy-transparent css classes
|
||||
this._backgroundColor = '0,0,0';
|
||||
this._transparentAlpha = '0.2';
|
||||
this._opaqueAlpha = '1';
|
||||
this._transparentAlphaBorder = '0.1';
|
||||
this._opaqueAlphaBorder = '0.5';
|
||||
this._transparentTransition = '0ms';
|
||||
this._opaqueTransition = '0ms';
|
||||
this._base_actor_style = "";
|
||||
|
||||
this._signalsHandler = new Utils.GlobalSignalsHandler();
|
||||
this._injectionsHandler = new Utils.InjectionsHandler();
|
||||
this._trackedWindows = new Map();
|
||||
}
|
||||
|
||||
enable() {
|
||||
// ensure I never double-register/inject
|
||||
// although it should never happen
|
||||
this.disable();
|
||||
|
||||
this._base_actor_style = this._actor.get_style();
|
||||
if (this._base_actor_style == null) {
|
||||
this._base_actor_style = "";
|
||||
}
|
||||
|
||||
this._signalsHandler.addWithLabel('transparency', [
|
||||
global.window_group,
|
||||
'actor-added',
|
||||
this._onWindowActorAdded.bind(this)
|
||||
], [
|
||||
global.window_group,
|
||||
'actor-removed',
|
||||
this._onWindowActorRemoved.bind(this)
|
||||
], [
|
||||
global.window_manager,
|
||||
'switch-workspace',
|
||||
this._updateSolidStyle.bind(this)
|
||||
], [
|
||||
Main.overview,
|
||||
'hiding',
|
||||
this._updateSolidStyle.bind(this)
|
||||
], [
|
||||
Main.overview,
|
||||
'showing',
|
||||
this._updateSolidStyle.bind(this)
|
||||
]);
|
||||
|
||||
// Window signals
|
||||
global.window_group.get_children().filter(function(child) {
|
||||
// An irrelevant window actor ('Gnome-shell') produces an error when the signals are
|
||||
// disconnected, therefore do not add signals to it.
|
||||
return child instanceof Meta.WindowActor &&
|
||||
child.get_meta_window().get_wm_class() !== 'Gnome-shell';
|
||||
}).forEach(function(win) {
|
||||
this._onWindowActorAdded(null, win);
|
||||
}, this);
|
||||
|
||||
if (this._actor.get_stage())
|
||||
this._updateSolidStyle();
|
||||
|
||||
this._updateStyles();
|
||||
this._updateSolidStyle();
|
||||
|
||||
this.emit('transparency-enabled');
|
||||
}
|
||||
|
||||
disable() {
|
||||
// ensure I never double-register/inject
|
||||
// although it should never happen
|
||||
this._signalsHandler.removeWithLabel('transparency');
|
||||
|
||||
for (let key of this._trackedWindows.keys())
|
||||
this._trackedWindows.get(key).forEach(id => {
|
||||
key.disconnect(id);
|
||||
});
|
||||
this._trackedWindows.clear();
|
||||
|
||||
this.emit('transparency-disabled');
|
||||
}
|
||||
|
||||
destroy() {
|
||||
this.disable();
|
||||
this._signalsHandler.destroy();
|
||||
this._injectionsHandler.destroy();
|
||||
}
|
||||
|
||||
_onWindowActorAdded(container, metaWindowActor) {
|
||||
let signalIds = [];
|
||||
['notify::allocation', 'notify::visible'].forEach(s => {
|
||||
signalIds.push(metaWindowActor.connect(s, this._updateSolidStyle.bind(this)));
|
||||
});
|
||||
this._trackedWindows.set(metaWindowActor, signalIds);
|
||||
}
|
||||
|
||||
_onWindowActorRemoved(container, metaWindowActor) {
|
||||
if (!this._trackedWindows.get(metaWindowActor))
|
||||
return;
|
||||
|
||||
this._trackedWindows.get(metaWindowActor).forEach(id => {
|
||||
metaWindowActor.disconnect(id);
|
||||
});
|
||||
this._trackedWindows.delete(metaWindowActor);
|
||||
this._updateSolidStyle();
|
||||
}
|
||||
|
||||
_updateSolidStyle() {
|
||||
let isNear = this._dockIsNear();
|
||||
if (isNear) {
|
||||
this._backgroundActor.set_style(this._opaque_style);
|
||||
this._dockActor.remove_style_class_name('transparent');
|
||||
this._dockActor.add_style_class_name('opaque');
|
||||
}
|
||||
else {
|
||||
this._backgroundActor.set_style(this._transparent_style);
|
||||
this._dockActor.remove_style_class_name('opaque');
|
||||
this._dockActor.add_style_class_name('transparent');
|
||||
}
|
||||
|
||||
this.emit('solid-style-updated', isNear);
|
||||
}
|
||||
|
||||
_dockIsNear() {
|
||||
if (this._dockActor.has_style_pseudo_class('overview'))
|
||||
return false;
|
||||
/* Get all the windows in the active workspace that are in the primary monitor and visible */
|
||||
let activeWorkspace = global.workspace_manager.get_active_workspace();
|
||||
let dash = this._dash;
|
||||
let windows = activeWorkspace.list_windows().filter(function(metaWindow) {
|
||||
return metaWindow.get_monitor() === dash._monitorIndex &&
|
||||
metaWindow.showing_on_its_workspace() &&
|
||||
metaWindow.get_window_type() != Meta.WindowType.DESKTOP;
|
||||
});
|
||||
|
||||
/* Check if at least one window is near enough to the panel.
|
||||
* If the dock is hidden, we need to account for the space it would take
|
||||
* up when it slides out. This is avoid an ugly transition.
|
||||
* */
|
||||
let factor = 0;
|
||||
if (!Docking.DockManager.settings.get_boolean('dock-fixed') &&
|
||||
this._dock.getDockState() == Docking.State.HIDDEN)
|
||||
factor = 1;
|
||||
let [leftCoord, topCoord] = this._actor.get_transformed_position();
|
||||
let threshold;
|
||||
if (this._position === St.Side.LEFT)
|
||||
threshold = leftCoord + this._actor.get_width() * (factor + 1);
|
||||
else if (this._position === St.Side.RIGHT)
|
||||
threshold = leftCoord - this._actor.get_width() * factor;
|
||||
else if (this._position === St.Side.TOP)
|
||||
threshold = topCoord + this._actor.get_height() * (factor + 1);
|
||||
else
|
||||
threshold = topCoord - this._actor.get_height() * factor;
|
||||
|
||||
let scale = St.ThemeContext.get_for_stage(global.stage).scale_factor;
|
||||
let isNearEnough = windows.some((metaWindow) => {
|
||||
let coord;
|
||||
if (this._position === St.Side.LEFT) {
|
||||
coord = metaWindow.get_frame_rect().x;
|
||||
return coord < threshold + 5 * scale;
|
||||
}
|
||||
else if (this._position === St.Side.RIGHT) {
|
||||
coord = metaWindow.get_frame_rect().x + metaWindow.get_frame_rect().width;
|
||||
return coord > threshold - 5 * scale;
|
||||
}
|
||||
else if (this._position === St.Side.TOP) {
|
||||
coord = metaWindow.get_frame_rect().y;
|
||||
return coord < threshold + 5 * scale;
|
||||
}
|
||||
else {
|
||||
coord = metaWindow.get_frame_rect().y + metaWindow.get_frame_rect().height;
|
||||
return coord > threshold - 5 * scale;
|
||||
}
|
||||
});
|
||||
|
||||
return isNearEnough;
|
||||
}
|
||||
|
||||
_updateStyles() {
|
||||
this._getAlphas();
|
||||
|
||||
this._transparent_style = this._base_actor_style +
|
||||
'background-color: rgba(' +
|
||||
this._backgroundColor + ', ' + this._transparentAlpha + ');' +
|
||||
'border-color: rgba(' +
|
||||
this._backgroundColor + ', ' + this._transparentAlphaBorder + ');' +
|
||||
'transition-duration: ' + this._transparentTransition + 'ms;';
|
||||
|
||||
this._opaque_style = this._base_actor_style +
|
||||
'background-color: rgba(' +
|
||||
this._backgroundColor + ', ' + this._opaqueAlpha + ');' +
|
||||
'border-color: rgba(' +
|
||||
this._backgroundColor + ',' + this._opaqueAlphaBorder + ');' +
|
||||
'transition-duration: ' + this._opaqueTransition + 'ms;';
|
||||
|
||||
this.emit('styles-updated');
|
||||
}
|
||||
|
||||
setColor(color) {
|
||||
this._backgroundColor = color.red + ',' + color.green + ',' + color.blue;
|
||||
this._updateStyles();
|
||||
}
|
||||
|
||||
_getAlphas() {
|
||||
// Create dummy object and add to the uiGroup to get it to the stage
|
||||
let dummyObject = new St.Bin({
|
||||
name: 'dashtodockContainer',
|
||||
});
|
||||
Main.uiGroup.add_child(dummyObject);
|
||||
|
||||
dummyObject.add_style_class_name('dummy-opaque');
|
||||
let themeNode = dummyObject.get_theme_node();
|
||||
this._opaqueAlpha = themeNode.get_background_color().alpha / 255;
|
||||
this._opaqueAlphaBorder = themeNode.get_border_color(0).alpha / 255;
|
||||
this._opaqueTransition = themeNode.get_transition_duration();
|
||||
|
||||
dummyObject.add_style_class_name('dummy-transparent');
|
||||
themeNode = dummyObject.get_theme_node();
|
||||
this._transparentAlpha = themeNode.get_background_color().alpha / 255;
|
||||
this._transparentAlphaBorder = themeNode.get_border_color(0).alpha / 255;
|
||||
this._transparentTransition = themeNode.get_transition_duration();
|
||||
|
||||
Main.uiGroup.remove_child(dummyObject);
|
||||
|
||||
let settings = Docking.DockManager.settings;
|
||||
|
||||
if (settings.get_boolean('customize-alphas')) {
|
||||
this._opaqueAlpha = settings.get_double('max-alpha');
|
||||
this._opaqueAlphaBorder = this._opaqueAlpha / 2;
|
||||
this._transparentAlpha = settings.get_double('min-alpha');
|
||||
this._transparentAlphaBorder = this._transparentAlpha / 2;
|
||||
}
|
||||
}
|
||||
};
|
||||
Signals.addSignalMethods(Transparency.prototype);
|
@ -1,308 +0,0 @@
|
||||
const Clutter = imports.gi.Clutter;
|
||||
const Meta = imports.gi.Meta;
|
||||
const St = imports.gi.St;
|
||||
|
||||
const Me = imports.misc.extensionUtils.getCurrentExtension();
|
||||
const Docking = Me.imports.docking;
|
||||
|
||||
var SignalsHandlerFlags = {
|
||||
NONE: 0,
|
||||
CONNECT_AFTER: 1
|
||||
};
|
||||
|
||||
/**
|
||||
* Simplify global signals and function injections handling
|
||||
* abstract class
|
||||
*/
|
||||
const BasicHandler = class DashToDock_BasicHandler {
|
||||
|
||||
constructor() {
|
||||
this._storage = new Object();
|
||||
}
|
||||
|
||||
add(/* unlimited 3-long array arguments */) {
|
||||
// Convert arguments object to array, concatenate with generic
|
||||
// Call addWithLabel with ags as if they were passed arguments
|
||||
this.addWithLabel('generic', ...arguments);
|
||||
}
|
||||
|
||||
destroy() {
|
||||
for( let label in this._storage )
|
||||
this.removeWithLabel(label);
|
||||
}
|
||||
|
||||
addWithLabel(label /* plus unlimited 3-long array arguments*/) {
|
||||
if (this._storage[label] == undefined)
|
||||
this._storage[label] = new Array();
|
||||
|
||||
// Skip first element of the arguments
|
||||
for (let i = 1; i < arguments.length; i++) {
|
||||
let item = this._storage[label];
|
||||
try {
|
||||
item.push(this._create(arguments[i]));
|
||||
} catch (e) {
|
||||
logError(e);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
removeWithLabel(label) {
|
||||
if (this._storage[label]) {
|
||||
for (let i = 0; i < this._storage[label].length; i++)
|
||||
this._remove(this._storage[label][i]);
|
||||
|
||||
delete this._storage[label];
|
||||
}
|
||||
}
|
||||
|
||||
// Virtual methods to be implemented by subclass
|
||||
|
||||
/**
|
||||
* Create single element to be stored in the storage structure
|
||||
*/
|
||||
_create(item) {
|
||||
throw new GObject.NotImplementedError(`_create in ${this.constructor.name}`);
|
||||
}
|
||||
|
||||
/**
|
||||
* Correctly delete single element
|
||||
*/
|
||||
_remove(item) {
|
||||
throw new GObject.NotImplementedError(`_remove in ${this.constructor.name}`);
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Manage global signals
|
||||
*/
|
||||
var GlobalSignalsHandler = class DashToDock_GlobalSignalHandler extends BasicHandler {
|
||||
|
||||
_create(item) {
|
||||
let object = item[0];
|
||||
let event = item[1];
|
||||
let callback = item[2]
|
||||
let flags = item.length > 3 ? item[3] : SignalsHandlerFlags.NONE;
|
||||
|
||||
if (!object)
|
||||
throw new Error('Impossible to connect to an invalid object');
|
||||
|
||||
let after = flags == SignalsHandlerFlags.CONNECT_AFTER;
|
||||
let connector = after ? object.connect_after : object.connect;
|
||||
|
||||
if (!connector) {
|
||||
throw new Error(`Requested to connect to signal '${event}', ` +
|
||||
`but no implementation for 'connect${after ? '_after' : ''}' `+
|
||||
`found in ${object.constructor.name}`);
|
||||
}
|
||||
|
||||
let id = connector.call(object, event, callback);
|
||||
|
||||
return [object, id];
|
||||
}
|
||||
|
||||
_remove(item) {
|
||||
item[0].disconnect(item[1]);
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Color manipulation utilities
|
||||
*/
|
||||
var ColorUtils = class DashToDock_ColorUtils {
|
||||
|
||||
// Darken or brigthen color by a fraction dlum
|
||||
// Each rgb value is modified by the same fraction.
|
||||
// Return "#rrggbb" string
|
||||
static ColorLuminance(r, g, b, dlum) {
|
||||
let rgbString = '#';
|
||||
|
||||
rgbString += ColorUtils._decimalToHex(Math.round(Math.min(Math.max(r*(1+dlum), 0), 255)), 2);
|
||||
rgbString += ColorUtils._decimalToHex(Math.round(Math.min(Math.max(g*(1+dlum), 0), 255)), 2);
|
||||
rgbString += ColorUtils._decimalToHex(Math.round(Math.min(Math.max(b*(1+dlum), 0), 255)), 2);
|
||||
|
||||
return rgbString;
|
||||
}
|
||||
|
||||
// Convert decimal to an hexadecimal string adding the desired padding
|
||||
static _decimalToHex(d, padding) {
|
||||
let hex = d.toString(16);
|
||||
while (hex.length < padding)
|
||||
hex = '0'+ hex;
|
||||
return hex;
|
||||
}
|
||||
|
||||
// Convert hsv ([0-1, 0-1, 0-1]) to rgb ([0-255, 0-255, 0-255]).
|
||||
// Following algorithm in https://en.wikipedia.org/wiki/HSL_and_HSV
|
||||
// here with h = [0,1] instead of [0, 360]
|
||||
// Accept either (h,s,v) independently or {h:h, s:s, v:v} object.
|
||||
// Return {r:r, g:g, b:b} object.
|
||||
static HSVtoRGB(h, s, v) {
|
||||
if (arguments.length === 1) {
|
||||
s = h.s;
|
||||
v = h.v;
|
||||
h = h.h;
|
||||
}
|
||||
|
||||
let r,g,b;
|
||||
let c = v*s;
|
||||
let h1 = h*6;
|
||||
let x = c*(1 - Math.abs(h1 % 2 - 1));
|
||||
let m = v - c;
|
||||
|
||||
if (h1 <=1)
|
||||
r = c + m, g = x + m, b = m;
|
||||
else if (h1 <=2)
|
||||
r = x + m, g = c + m, b = m;
|
||||
else if (h1 <=3)
|
||||
r = m, g = c + m, b = x + m;
|
||||
else if (h1 <=4)
|
||||
r = m, g = x + m, b = c + m;
|
||||
else if (h1 <=5)
|
||||
r = x + m, g = m, b = c + m;
|
||||
else
|
||||
r = c + m, g = m, b = x + m;
|
||||
|
||||
return {
|
||||
r: Math.round(r * 255),
|
||||
g: Math.round(g * 255),
|
||||
b: Math.round(b * 255)
|
||||
};
|
||||
}
|
||||
|
||||
// Convert rgb ([0-255, 0-255, 0-255]) to hsv ([0-1, 0-1, 0-1]).
|
||||
// Following algorithm in https://en.wikipedia.org/wiki/HSL_and_HSV
|
||||
// here with h = [0,1] instead of [0, 360]
|
||||
// Accept either (r,g,b) independently or {r:r, g:g, b:b} object.
|
||||
// Return {h:h, s:s, v:v} object.
|
||||
static RGBtoHSV(r, g, b) {
|
||||
if (arguments.length === 1) {
|
||||
r = r.r;
|
||||
g = r.g;
|
||||
b = r.b;
|
||||
}
|
||||
|
||||
let h,s,v;
|
||||
|
||||
let M = Math.max(r, g, b);
|
||||
let m = Math.min(r, g, b);
|
||||
let c = M - m;
|
||||
|
||||
if (c == 0)
|
||||
h = 0;
|
||||
else if (M == r)
|
||||
h = ((g-b)/c) % 6;
|
||||
else if (M == g)
|
||||
h = (b-r)/c + 2;
|
||||
else
|
||||
h = (r-g)/c + 4;
|
||||
|
||||
h = h/6;
|
||||
v = M/255;
|
||||
if (M !== 0)
|
||||
s = c/M;
|
||||
else
|
||||
s = 0;
|
||||
|
||||
return {
|
||||
h: h,
|
||||
s: s,
|
||||
v: v
|
||||
};
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Manage function injection: both instances and prototype can be overridden
|
||||
* and restored
|
||||
*/
|
||||
var InjectionsHandler = class DashToDock_InjectionsHandler extends BasicHandler {
|
||||
|
||||
_create(item) {
|
||||
let object = item[0];
|
||||
let name = item[1];
|
||||
let injectedFunction = item[2];
|
||||
let original = object[name];
|
||||
|
||||
object[name] = injectedFunction;
|
||||
return [object, name, injectedFunction, original];
|
||||
}
|
||||
|
||||
_remove(item) {
|
||||
let object = item[0];
|
||||
let name = item[1];
|
||||
let original = item[3];
|
||||
object[name] = original;
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Return the actual position reverseing left and right in rtl
|
||||
*/
|
||||
function getPosition() {
|
||||
let position = Docking.DockManager.settings.get_enum('dock-position');
|
||||
if (Clutter.get_default_text_direction() == Clutter.TextDirection.RTL) {
|
||||
if (position == St.Side.LEFT)
|
||||
position = St.Side.RIGHT;
|
||||
else if (position == St.Side.RIGHT)
|
||||
position = St.Side.LEFT;
|
||||
}
|
||||
return position;
|
||||
}
|
||||
|
||||
function drawRoundedLine(cr, x, y, width, height, isRoundLeft, isRoundRight, stroke, fill) {
|
||||
if (height > width) {
|
||||
y += Math.floor((height - width) / 2.0);
|
||||
height = width;
|
||||
}
|
||||
|
||||
height = 2.0 * Math.floor(height / 2.0);
|
||||
|
||||
var leftRadius = isRoundLeft ? height / 2.0 : 0.0;
|
||||
var rightRadius = isRoundRight ? height / 2.0 : 0.0;
|
||||
|
||||
cr.moveTo(x + width - rightRadius, y);
|
||||
cr.lineTo(x + leftRadius, y);
|
||||
if (isRoundLeft)
|
||||
cr.arcNegative(x + leftRadius, y + leftRadius, leftRadius, -Math.PI/2, Math.PI/2);
|
||||
else
|
||||
cr.lineTo(x, y + height);
|
||||
cr.lineTo(x + width - rightRadius, y + height);
|
||||
if (isRoundRight)
|
||||
cr.arcNegative(x + width - rightRadius, y + rightRadius, rightRadius, Math.PI/2, -Math.PI/2);
|
||||
else
|
||||
cr.lineTo(x + width, y);
|
||||
cr.closePath();
|
||||
|
||||
if (fill != null) {
|
||||
cr.setSource(fill);
|
||||
cr.fillPreserve();
|
||||
}
|
||||
if (stroke != null)
|
||||
cr.setSource(stroke);
|
||||
cr.stroke();
|
||||
}
|
||||
|
||||
/**
|
||||
* Convert a signal handler with n value parameters (that is, excluding the
|
||||
* signal source parameter) to an array of n handlers that are each responsible
|
||||
* for receiving one of the n values and calling the original handler with the
|
||||
* most up-to-date arguments.
|
||||
*/
|
||||
function splitHandler(handler) {
|
||||
if (handler.length > 30) {
|
||||
throw new Error("too many parameters");
|
||||
}
|
||||
const count = handler.length - 1;
|
||||
let missingValueBits = (1 << count) - 1;
|
||||
const values = Array.from({ length: count });
|
||||
return values.map((_ignored, i) => {
|
||||
const mask = ~(1 << i);
|
||||
return (obj, value) => {
|
||||
values[i] = value;
|
||||
missingValueBits &= mask;
|
||||
if (missingValueBits === 0) {
|
||||
handler(obj, ...values);
|
||||
}
|
||||
};
|
||||
});
|
||||
}
|
@ -1,598 +0,0 @@
|
||||
/*
|
||||
* Credits:
|
||||
* This file is based on code from the Dash to Panel extension by Jason DeRose
|
||||
* and code from the Taskbar extension by Zorin OS
|
||||
* Some code was also adapted from the upstream Gnome Shell source code.
|
||||
*/
|
||||
const Clutter = imports.gi.Clutter;
|
||||
const GLib = imports.gi.GLib;
|
||||
const GObject = imports.gi.GObject;
|
||||
const St = imports.gi.St;
|
||||
const Main = imports.ui.main;
|
||||
|
||||
const Params = imports.misc.params;
|
||||
const PopupMenu = imports.ui.popupMenu;
|
||||
const Workspace = imports.ui.workspace;
|
||||
|
||||
const Me = imports.misc.extensionUtils.getCurrentExtension();
|
||||
const Utils = Me.imports.utils;
|
||||
|
||||
const PREVIEW_MAX_WIDTH = 250;
|
||||
const PREVIEW_MAX_HEIGHT = 150;
|
||||
|
||||
const PREVIEW_ANIMATION_DURATION = 250;
|
||||
|
||||
var WindowPreviewMenu = class DashToDock_WindowPreviewMenu extends PopupMenu.PopupMenu {
|
||||
|
||||
constructor(source) {
|
||||
let side = Utils.getPosition();
|
||||
super(source, 0.5, side);
|
||||
|
||||
// We want to keep the item hovered while the menu is up
|
||||
this.blockSourceEvents = true;
|
||||
|
||||
this._source = source;
|
||||
this._app = this._source.app;
|
||||
let monitorIndex = this._source.monitorIndex;
|
||||
|
||||
this.actor.add_style_class_name('app-well-menu');
|
||||
this.actor.set_style('max-width: ' + (Main.layoutManager.monitors[monitorIndex].width - 22) + 'px; ' +
|
||||
'max-height: ' + (Main.layoutManager.monitors[monitorIndex].height - 22) + 'px;');
|
||||
this.actor.hide();
|
||||
|
||||
// Chain our visibility and lifecycle to that of the source
|
||||
this._mappedId = this._source.connect('notify::mapped', () => {
|
||||
if (!this._source.mapped)
|
||||
this.close();
|
||||
});
|
||||
this._destroyId = this._source.connect('destroy', this.destroy.bind(this));
|
||||
|
||||
Main.uiGroup.add_actor(this.actor);
|
||||
|
||||
// Change the initialized side where required.
|
||||
this._arrowSide = side;
|
||||
this._boxPointer._arrowSide = side;
|
||||
this._boxPointer._userArrowSide = side;
|
||||
|
||||
this.connect('destroy', this._onDestroy.bind(this));
|
||||
}
|
||||
|
||||
_redisplay() {
|
||||
if (this._previewBox)
|
||||
this._previewBox.destroy();
|
||||
this._previewBox = new WindowPreviewList(this._source);
|
||||
this.addMenuItem(this._previewBox);
|
||||
this._previewBox._redisplay();
|
||||
}
|
||||
|
||||
popup() {
|
||||
let windows = this._source.getInterestingWindows();
|
||||
if (windows.length > 0) {
|
||||
this._redisplay();
|
||||
this.open();
|
||||
this.actor.navigate_focus(null, St.DirectionType.TAB_FORWARD, false);
|
||||
this._source.emit('sync-tooltip');
|
||||
}
|
||||
}
|
||||
|
||||
_onDestroy() {
|
||||
if (this._mappedId)
|
||||
this._source.disconnect(this._mappedId);
|
||||
|
||||
if (this._destroyId)
|
||||
this._source.disconnect(this._destroyId);
|
||||
}
|
||||
};
|
||||
|
||||
var WindowPreviewList = class DashToDock_WindowPreviewList extends PopupMenu.PopupMenuSection {
|
||||
|
||||
constructor(source) {
|
||||
super();
|
||||
this.actor = new St.ScrollView({
|
||||
name: 'dashtodockWindowScrollview',
|
||||
hscrollbar_policy: St.PolicyType.NEVER,
|
||||
vscrollbar_policy: St.PolicyType.NEVER,
|
||||
enable_mouse_scrolling: true
|
||||
});
|
||||
|
||||
this.actor.connect('scroll-event', this._onScrollEvent.bind(this));
|
||||
|
||||
let position = Utils.getPosition();
|
||||
this.isHorizontal = position == St.Side.BOTTOM || position == St.Side.TOP;
|
||||
this.box.set_vertical(!this.isHorizontal);
|
||||
this.box.set_name('dashtodockWindowList');
|
||||
this.actor.add_actor(this.box);
|
||||
this.actor._delegate = this;
|
||||
|
||||
this._shownInitially = false;
|
||||
|
||||
this._source = source;
|
||||
this.app = source.app;
|
||||
|
||||
this._redisplayId = Main.initializeDeferredWork(this.actor, this._redisplay.bind(this));
|
||||
|
||||
this.actor.connect('destroy', this._onDestroy.bind(this));
|
||||
this._stateChangedId = this.app.connect('windows-changed',
|
||||
this._queueRedisplay.bind(this));
|
||||
}
|
||||
|
||||
_queueRedisplay () {
|
||||
Main.queueDeferredWork(this._redisplayId);
|
||||
}
|
||||
|
||||
_onScrollEvent(actor, event) {
|
||||
// Event coordinates are relative to the stage but can be transformed
|
||||
// as the actor will only receive events within his bounds.
|
||||
let stage_x, stage_y, ok, event_x, event_y, actor_w, actor_h;
|
||||
[stage_x, stage_y] = event.get_coords();
|
||||
[ok, event_x, event_y] = actor.transform_stage_point(stage_x, stage_y);
|
||||
[actor_w, actor_h] = actor.get_size();
|
||||
|
||||
// If the scroll event is within a 1px margin from
|
||||
// the relevant edge of the actor, let the event propagate.
|
||||
if (event_y >= actor_h - 2)
|
||||
return Clutter.EVENT_PROPAGATE;
|
||||
|
||||
// Skip to avoid double events mouse
|
||||
if (event.is_pointer_emulated())
|
||||
return Clutter.EVENT_STOP;
|
||||
|
||||
let adjustment, delta;
|
||||
|
||||
if (this.isHorizontal)
|
||||
adjustment = this.actor.get_hscroll_bar().get_adjustment();
|
||||
else
|
||||
adjustment = this.actor.get_vscroll_bar().get_adjustment();
|
||||
|
||||
let increment = adjustment.step_increment;
|
||||
|
||||
switch ( event.get_scroll_direction() ) {
|
||||
case Clutter.ScrollDirection.UP:
|
||||
delta = -increment;
|
||||
break;
|
||||
case Clutter.ScrollDirection.DOWN:
|
||||
delta = +increment;
|
||||
break;
|
||||
case Clutter.ScrollDirection.SMOOTH:
|
||||
let [dx, dy] = event.get_scroll_delta();
|
||||
delta = dy*increment;
|
||||
delta += dx*increment;
|
||||
break;
|
||||
|
||||
}
|
||||
|
||||
adjustment.set_value(adjustment.get_value() + delta);
|
||||
|
||||
return Clutter.EVENT_STOP;
|
||||
}
|
||||
|
||||
_onDestroy() {
|
||||
this.app.disconnect(this._stateChangedId);
|
||||
this._stateChangedId = 0;
|
||||
}
|
||||
|
||||
_createPreviewItem(window) {
|
||||
let preview = new WindowPreviewMenuItem(window);
|
||||
return preview;
|
||||
}
|
||||
|
||||
_redisplay () {
|
||||
let children = this._getMenuItems().filter(function(actor) {
|
||||
return actor._window;
|
||||
});
|
||||
|
||||
// Windows currently on the menu
|
||||
let oldWin = children.map(function(actor) {
|
||||
return actor._window;
|
||||
});
|
||||
|
||||
// All app windows with a static order
|
||||
let newWin = this._source.getInterestingWindows().sort(function(a, b) {
|
||||
return a.get_stable_sequence() > b.get_stable_sequence();
|
||||
});
|
||||
|
||||
let addedItems = [];
|
||||
let removedActors = [];
|
||||
|
||||
let newIndex = 0;
|
||||
let oldIndex = 0;
|
||||
|
||||
while (newIndex < newWin.length || oldIndex < oldWin.length) {
|
||||
// No change at oldIndex/newIndex
|
||||
if (oldWin[oldIndex] &&
|
||||
oldWin[oldIndex] == newWin[newIndex]) {
|
||||
oldIndex++;
|
||||
newIndex++;
|
||||
continue;
|
||||
}
|
||||
|
||||
// Window removed at oldIndex
|
||||
if (oldWin[oldIndex] &&
|
||||
newWin.indexOf(oldWin[oldIndex]) == -1) {
|
||||
removedActors.push(children[oldIndex]);
|
||||
oldIndex++;
|
||||
continue;
|
||||
}
|
||||
|
||||
// Window added at newIndex
|
||||
if (newWin[newIndex] &&
|
||||
oldWin.indexOf(newWin[newIndex]) == -1) {
|
||||
addedItems.push({ item: this._createPreviewItem(newWin[newIndex]),
|
||||
pos: newIndex });
|
||||
newIndex++;
|
||||
continue;
|
||||
}
|
||||
|
||||
// Window moved
|
||||
let insertHere = newWin[newIndex + 1] &&
|
||||
newWin[newIndex + 1] == oldWin[oldIndex];
|
||||
let alreadyRemoved = removedActors.reduce(function(result, actor) {
|
||||
let removedWin = actor._window;
|
||||
return result || removedWin == newWin[newIndex];
|
||||
}, false);
|
||||
|
||||
if (insertHere || alreadyRemoved) {
|
||||
addedItems.push({ item: this._createPreviewItem(newWin[newIndex]),
|
||||
pos: newIndex + removedActors.length });
|
||||
newIndex++;
|
||||
} else {
|
||||
removedActors.push(children[oldIndex]);
|
||||
oldIndex++;
|
||||
}
|
||||
}
|
||||
|
||||
for (let i = 0; i < addedItems.length; i++)
|
||||
this.addMenuItem(addedItems[i].item,
|
||||
addedItems[i].pos);
|
||||
|
||||
for (let i = 0; i < removedActors.length; i++) {
|
||||
let item = removedActors[i];
|
||||
if (this._shownInitially)
|
||||
item._animateOutAndDestroy();
|
||||
else
|
||||
item.actor.destroy();
|
||||
}
|
||||
|
||||
// Skip animations on first run when adding the initial set
|
||||
// of items, to avoid all items zooming in at once
|
||||
let animate = this._shownInitially;
|
||||
|
||||
if (!this._shownInitially)
|
||||
this._shownInitially = true;
|
||||
|
||||
for (let i = 0; i < addedItems.length; i++)
|
||||
addedItems[i].item.show(animate);
|
||||
|
||||
// Workaround for https://bugzilla.gnome.org/show_bug.cgi?id=692744
|
||||
// Without it, StBoxLayout may use a stale size cache
|
||||
this.box.queue_relayout();
|
||||
|
||||
if (newWin.length < 1)
|
||||
this._getTopMenu().close(~0);
|
||||
|
||||
// As for upstream:
|
||||
// St.ScrollView always requests space horizontally for a possible vertical
|
||||
// scrollbar if in AUTOMATIC mode. Doing better would require implementation
|
||||
// of width-for-height in St.BoxLayout and St.ScrollView. This looks bad
|
||||
// when we *don't* need it, so turn off the scrollbar when that's true.
|
||||
// Dynamic changes in whether we need it aren't handled properly.
|
||||
let needsScrollbar = this._needsScrollbar();
|
||||
let scrollbar_policy = needsScrollbar ?
|
||||
St.PolicyType.AUTOMATIC : St.PolicyType.NEVER;
|
||||
if (this.isHorizontal)
|
||||
this.actor.hscrollbar_policy = scrollbar_policy;
|
||||
else
|
||||
this.actor.vscrollbar_policy = scrollbar_policy;
|
||||
|
||||
if (needsScrollbar)
|
||||
this.actor.add_style_pseudo_class('scrolled');
|
||||
else
|
||||
this.actor.remove_style_pseudo_class('scrolled');
|
||||
}
|
||||
|
||||
_needsScrollbar() {
|
||||
let topMenu = this._getTopMenu();
|
||||
let topThemeNode = topMenu.actor.get_theme_node();
|
||||
if (this.isHorizontal) {
|
||||
let [topMinWidth, topNaturalWidth] = topMenu.actor.get_preferred_width(-1);
|
||||
let topMaxWidth = topThemeNode.get_max_width();
|
||||
return topMaxWidth >= 0 && topNaturalWidth >= topMaxWidth;
|
||||
} else {
|
||||
let [topMinHeight, topNaturalHeight] = topMenu.actor.get_preferred_height(-1);
|
||||
let topMaxHeight = topThemeNode.get_max_height();
|
||||
return topMaxHeight >= 0 && topNaturalHeight >= topMaxHeight;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
isAnimatingOut() {
|
||||
return this.actor.get_children().reduce(function(result, actor) {
|
||||
return result || actor.animatingOut;
|
||||
}, false);
|
||||
}
|
||||
};
|
||||
|
||||
var WindowPreviewMenuItem = GObject.registerClass(
|
||||
class DashToDock_WindowPreviewMenuItem extends PopupMenu.PopupBaseMenuItem {
|
||||
_init(window, params) {
|
||||
super._init(params);
|
||||
|
||||
this._window = window;
|
||||
this._destroyId = 0;
|
||||
this._windowAddedId = 0;
|
||||
[this._width, this._height, this._scale] = this._getWindowPreviewSize(); // This gets the actual windows size for the preview
|
||||
|
||||
// We don't want this: it adds spacing on the left of the item.
|
||||
this.remove_child(this._ornamentLabel);
|
||||
this.add_style_class_name('dashtodock-app-well-preview-menu-item');
|
||||
|
||||
// Now we don't have to set PREVIEW_MAX_WIDTH and PREVIEW_MAX_HEIGHT as preview size - that made all kinds of windows either stretched or squished (aspect ratio problem)
|
||||
this._cloneBin = new St.Bin();
|
||||
this._cloneBin.set_size(this._width*this._scale, this._height*this._scale);
|
||||
|
||||
// TODO: improve the way the closebutton is layout. Just use some padding
|
||||
// for the moment.
|
||||
this._cloneBin.set_style('padding-bottom: 0.5em');
|
||||
|
||||
this.closeButton = new St.Button({ style_class: 'window-close',
|
||||
x_expand: true,
|
||||
y_expand: true});
|
||||
this.closeButton.add_actor(new St.Icon({ icon_name: 'window-close-symbolic' }));
|
||||
this.closeButton.set_x_align(Clutter.ActorAlign.END);
|
||||
this.closeButton.set_y_align(Clutter.ActorAlign.START);
|
||||
|
||||
|
||||
this.closeButton.opacity = 0;
|
||||
this.closeButton.connect('clicked', this._closeWindow.bind(this));
|
||||
|
||||
let overlayGroup = new Clutter.Actor({layout_manager: new Clutter.BinLayout(), y_expand: true });
|
||||
|
||||
overlayGroup.add_actor(this._cloneBin);
|
||||
overlayGroup.add_actor(this.closeButton);
|
||||
|
||||
let label = new St.Label({ text: window.get_title()});
|
||||
label.set_style('max-width: '+PREVIEW_MAX_WIDTH +'px');
|
||||
let labelBin = new St.Bin({ child: label,
|
||||
x_align: Clutter.ActorAlign.CENTER,
|
||||
});
|
||||
|
||||
this._windowTitleId = this._window.connect('notify::title', () => {
|
||||
label.set_text(this._window.get_title());
|
||||
});
|
||||
|
||||
let box = new St.BoxLayout({ vertical: true,
|
||||
reactive:true,
|
||||
x_expand:true });
|
||||
box.add(overlayGroup);
|
||||
box.add(labelBin);
|
||||
this.add_actor(box);
|
||||
|
||||
this._cloneTexture(window);
|
||||
|
||||
this.connect('destroy', this._onDestroy.bind(this));
|
||||
}
|
||||
|
||||
_getWindowPreviewSize() {
|
||||
let mutterWindow = this._window.get_compositor_private();
|
||||
let [width, height] = mutterWindow.get_size();
|
||||
let scale = Math.min(1.0, PREVIEW_MAX_WIDTH/width, PREVIEW_MAX_HEIGHT/height);
|
||||
return [width, height, scale];
|
||||
}
|
||||
|
||||
_cloneTexture(metaWin){
|
||||
|
||||
let mutterWindow = metaWin.get_compositor_private();
|
||||
|
||||
// Newly-created windows are added to a workspace before
|
||||
// the compositor finds out about them...
|
||||
// Moreover sometimes they return an empty texture, thus as a workarounf also check for it size
|
||||
if (!mutterWindow || !mutterWindow.get_texture() || !mutterWindow.get_size()[0]) {
|
||||
this._cloneTextureId = GLib.idle_add(GLib.PRIORITY_DEFAULT, () => {
|
||||
// Check if there's still a point in getting the texture,
|
||||
// otherwise this could go on indefinitely
|
||||
if (metaWin.get_workspace())
|
||||
this._cloneTexture(metaWin);
|
||||
this._cloneTextureId = 0;
|
||||
return GLib.SOURCE_REMOVE;
|
||||
});
|
||||
GLib.Source.set_name_by_id(this._cloneTextureId, '[dash-to-dock] this._cloneTexture');
|
||||
return;
|
||||
}
|
||||
|
||||
let clone = new Clutter.Clone ({ source: mutterWindow,
|
||||
reactive: true,
|
||||
width: this._width * this._scale,
|
||||
height: this._height * this._scale });
|
||||
|
||||
// when the source actor is destroyed, i.e. the window closed, first destroy the clone
|
||||
// and then destroy the menu item (do this animating out)
|
||||
this._destroyId = mutterWindow.connect('destroy', () => {
|
||||
clone.destroy();
|
||||
this._destroyId = 0; // avoid to try to disconnect this signal from mutterWindow in _onDestroy(),
|
||||
// as the object was just destroyed
|
||||
this._animateOutAndDestroy();
|
||||
});
|
||||
|
||||
this._clone = clone;
|
||||
this._mutterWindow = mutterWindow;
|
||||
this._cloneBin.set_child(this._clone);
|
||||
|
||||
this._clone.connect('destroy', () => {
|
||||
if (this._destroyId) {
|
||||
mutterWindow.disconnect(this._destroyId);
|
||||
this._destroyId = 0;
|
||||
}
|
||||
this._clone = null;
|
||||
})
|
||||
}
|
||||
|
||||
_windowCanClose() {
|
||||
return this._window.can_close() &&
|
||||
!this._hasAttachedDialogs();
|
||||
}
|
||||
|
||||
_closeWindow(actor) {
|
||||
this._workspace = this._window.get_workspace();
|
||||
|
||||
// This mechanism is copied from the workspace.js upstream code
|
||||
// It forces window activation if the windows don't get closed,
|
||||
// for instance because asking user confirmation, by monitoring the opening of
|
||||
// such additional confirmation window
|
||||
this._windowAddedId = this._workspace.connect('window-added',
|
||||
this._onWindowAdded.bind(this));
|
||||
|
||||
this.deleteAllWindows();
|
||||
}
|
||||
|
||||
deleteAllWindows() {
|
||||
// Delete all windows, starting from the bottom-most (most-modal) one
|
||||
//let windows = this._window.get_compositor_private().get_children();
|
||||
let windows = this._clone.get_children();
|
||||
for (let i = windows.length - 1; i >= 1; i--) {
|
||||
let realWindow = windows[i].source;
|
||||
let metaWindow = realWindow.meta_window;
|
||||
|
||||
metaWindow.delete(global.get_current_time());
|
||||
}
|
||||
|
||||
this._window.delete(global.get_current_time());
|
||||
}
|
||||
|
||||
_onWindowAdded(workspace, win) {
|
||||
let metaWindow = this._window;
|
||||
|
||||
if (win.get_transient_for() == metaWindow) {
|
||||
workspace.disconnect(this._windowAddedId);
|
||||
this._windowAddedId = 0;
|
||||
|
||||
// use an idle handler to avoid mapping problems -
|
||||
// see comment in Workspace._windowAdded
|
||||
let activationEvent = Clutter.get_current_event();
|
||||
let id = GLib.idle_add(GLib.PRIORITY_DEFAULT, () => {
|
||||
this.emit('activate', activationEvent);
|
||||
return GLib.SOURCE_REMOVE;
|
||||
});
|
||||
GLib.Source.set_name_by_id(id, '[dash-to-dock] this.emit');
|
||||
}
|
||||
}
|
||||
|
||||
_hasAttachedDialogs() {
|
||||
// count trasient windows
|
||||
let n=0;
|
||||
this._window.foreach_transient(function(){n++;});
|
||||
return n>0;
|
||||
}
|
||||
|
||||
vfunc_key_focus_in() {
|
||||
super.vfunc_key_focus_in();
|
||||
this._showCloseButton();
|
||||
}
|
||||
|
||||
vfunc_key_focus_out() {
|
||||
super.vfunc_key_focus_out();
|
||||
this._hideCloseButton();
|
||||
}
|
||||
|
||||
vfunc_enter_event(crossingEvent) {
|
||||
this._showCloseButton();
|
||||
return super.vfunc_enter_event(crossingEvent);
|
||||
}
|
||||
|
||||
vfunc_leave_event(crossingEvent) {
|
||||
this._hideCloseButton();
|
||||
return super.vfunc_leave_event(crossingEvent);
|
||||
}
|
||||
|
||||
_idleToggleCloseButton() {
|
||||
this._idleToggleCloseId = 0;
|
||||
|
||||
this._hideCloseButton();
|
||||
|
||||
return GLib.SOURCE_REMOVE;
|
||||
}
|
||||
|
||||
_showCloseButton() {
|
||||
|
||||
if (this._windowCanClose()) {
|
||||
this.closeButton.show();
|
||||
this.closeButton.remove_all_transitions();
|
||||
this.closeButton.ease({
|
||||
opacity: 255,
|
||||
duration: Workspace.WINDOW_OVERLAY_FADE_TIME,
|
||||
mode: Clutter.AnimationMode.EASE_OUT_QUAD
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
_hideCloseButton() {
|
||||
if (this.closeButton.has_pointer ||
|
||||
this.get_children().some(a => a.has_pointer))
|
||||
return;
|
||||
|
||||
this.closeButton.remove_all_transitions();
|
||||
this.closeButton.ease({
|
||||
opacity: 0,
|
||||
duration: Workspace.WINDOW_OVERLAY_FADE_TIME,
|
||||
mode: Clutter.AnimationMode.EASE_IN_QUAD
|
||||
});
|
||||
}
|
||||
|
||||
show(animate) {
|
||||
let fullWidth = this.get_width();
|
||||
|
||||
this.opacity = 0;
|
||||
this.set_width(0);
|
||||
|
||||
let time = animate ? PREVIEW_ANIMATION_DURATION : 0;
|
||||
this.remove_all_transitions();
|
||||
this.ease({
|
||||
opacity: 255,
|
||||
width: fullWidth,
|
||||
duration: time,
|
||||
mode: Clutter.AnimationMode.EASE_IN_OUT_QUAD,
|
||||
});
|
||||
}
|
||||
|
||||
_animateOutAndDestroy() {
|
||||
this.remove_all_transitions();
|
||||
this.ease({
|
||||
opacity: 0,
|
||||
duration: PREVIEW_ANIMATION_DURATION,
|
||||
});
|
||||
|
||||
this.ease({
|
||||
width: 0,
|
||||
height: 0,
|
||||
duration: PREVIEW_ANIMATION_DURATION,
|
||||
delay: PREVIEW_ANIMATION_DURATION,
|
||||
onComplete: () => this.destroy()
|
||||
});
|
||||
}
|
||||
|
||||
activate() {
|
||||
this._getTopMenu().close();
|
||||
Main.activateWindow(this._window);
|
||||
}
|
||||
|
||||
_onDestroy() {
|
||||
if (this._cloneTextureId) {
|
||||
GLib.source_remove(this._cloneTextureId);
|
||||
this._cloneTextureId = 0;
|
||||
}
|
||||
|
||||
if (this._windowAddedId > 0) {
|
||||
this._workspace.disconnect(this._windowAddedId);
|
||||
this._windowAddedId = 0;
|
||||
}
|
||||
|
||||
if (this._destroyId > 0) {
|
||||
this._mutterWindow.disconnect(this._destroyId);
|
||||
this._destroyId = 0;
|
||||
}
|
||||
|
||||
if (this._windowTitleId > 0) {
|
||||
this._window.disconnect(this._windowTitleId);
|
||||
this._windowTitleId = 0;
|
||||
}
|
||||
}
|
||||
});
|
9
src/other/dash-to-dock/stylesheet-40.scss
Normal file
9
src/other/dash-to-dock/stylesheet-40.scss
Normal file
@ -0,0 +1,9 @@
|
||||
$variant: 'dark';
|
||||
$laptop: 'false';
|
||||
$trans: 'true';
|
||||
$black: 'false';
|
||||
$theme: 'default';
|
||||
|
||||
@import '../../sass/colors';
|
||||
@import '../../sass/variables';
|
||||
@import '_dash-to-dock-4.scss';
|
@ -6,4 +6,4 @@ $theme: 'default';
|
||||
|
||||
@import '../../sass/colors';
|
||||
@import '../../sass/variables';
|
||||
@import '_dash-to-dock.scss';
|
||||
@import '_dash-to-dock-3.scss';
|
||||
|
@ -6,4 +6,4 @@ $theme: 'default';
|
||||
|
||||
@import '../../sass/colors';
|
||||
@import '../../sass/variables';
|
||||
@import '_dash-to-dock.scss';
|
||||
@import '_dash-to-dock-3.scss';
|
||||
|
@ -26,7 +26,7 @@
|
||||
background-color: $primary_color;
|
||||
box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.25);
|
||||
border-radius: $circular_radius;
|
||||
margin: 2px;
|
||||
margin: 2px 3px 5px;
|
||||
padding: 0.2em 0.6em;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
@ -36,12 +36,9 @@
|
||||
(bottom, top, 0 1px),
|
||||
(left, right, -1px 0),
|
||||
(right, left, 1px 0) {
|
||||
&.#{$_pos}.shrink #dash,
|
||||
&.#{$_pos}.shrink:overview #dash,
|
||||
&.#{$_pos}.straight-corner #dash,
|
||||
&.#{$_pos}.shrink.straight-corner #dash,
|
||||
&.#{$_pos}.extended #dash,
|
||||
&.#{$_pos}.extended:overview #dash {
|
||||
&.#{$_pos}.extended #dash {
|
||||
margin: 0 !important;
|
||||
padding: 0 !important;
|
||||
|
||||
|
28
tweaks.sh
28
tweaks.sh
@ -137,9 +137,7 @@ while [[ $# -gt 0 ]]; do
|
||||
has_any_error="true"
|
||||
fi; shift ;;
|
||||
-d|--dash-to-dock)
|
||||
if [[ "${GNOME_VERSION}" == 'new' ]]; then
|
||||
dash_to_dock="new"
|
||||
elif [[ ! -d "${DASH_TO_DOCK_DIR_HOME}" && ! -d "${DASH_TO_DOCK_DIR_ROOT}" ]]; then
|
||||
if [[ ! -d "${DASH_TO_DOCK_DIR_HOME}" && ! -d "${DASH_TO_DOCK_DIR_ROOT}" ]]; then
|
||||
prompt -e "'${1}' ERROR: There's no Dash to Dock installed in your system"
|
||||
has_any_error="true"
|
||||
else
|
||||
@ -201,12 +199,6 @@ if [[ "${uninstall}" == 'true' ]]; then
|
||||
prompt -s "Done! '${name}' Dash to Dock theme has been removed."; echo
|
||||
fi
|
||||
|
||||
if [[ "${dash_to_dock}" == 'new' ]]; then
|
||||
prompt -i "Removing '${name}' Dash to Dock extension... \n"
|
||||
revert_dash_to_dock
|
||||
prompt -s "Done! '${name}' Dash to Dock extension has been removed."; echo
|
||||
fi
|
||||
|
||||
if [[ "${firefox}" == 'true' ]]; then
|
||||
prompt -i "Removing '${name}' Firefox theme... \n"
|
||||
remove_firefox_theme
|
||||
@ -222,14 +214,9 @@ else
|
||||
fi
|
||||
|
||||
if [[ "${flatpak}" == 'true' ]]; then
|
||||
if [[ -d "${THEME_DIR}/${name}${color}${opacity}" ]]; then
|
||||
prompt -i "Connecting '${name}' themes to your Flatpak... \n"
|
||||
connect_flatpak
|
||||
prompt -s "Done! '${name}' theme has been connected to your Flatpak."; echo
|
||||
else
|
||||
prompt -e "ERROR: Befaore you run '-F' you need install this theme first... \n"
|
||||
exit 0
|
||||
fi
|
||||
prompt -i "Connecting '${name}' themes to your Flatpak... \n"
|
||||
connect_flatpak
|
||||
prompt -s "Done! '${name}' theme has been connected to your Flatpak."; echo
|
||||
fi
|
||||
|
||||
if [[ "${gdm}" == 'true' ]]; then
|
||||
@ -245,13 +232,6 @@ else
|
||||
prompt -w "DASH TO DOCK: You may need to logout to take effect."; echo
|
||||
fi
|
||||
|
||||
if [[ "${dash_to_dock}" == 'new' ]]; then
|
||||
prompt -i "Installing fixed Dash to Dock... \n"
|
||||
install_dash_to_dock
|
||||
prompt -s "Done! '${name}' Dash to Dock extension has been installed."
|
||||
prompt -w "DASH TO DOCK: You may need to logout to take effect."; echo
|
||||
fi
|
||||
|
||||
if [[ "${firefox}" == 'true' || "${edit_firefox}" == 'true' ]]; then
|
||||
if [[ "${firefox}" == 'true' ]]; then
|
||||
prompt -i "Installing '${name}' Firefox theme... \n"
|
||||
|
Loading…
x
Reference in New Issue
Block a user