1
0
mirror of https://github.com/gryf/wmaker.git synced 2026-07-12 16:56:30 +02:00

Compare commits

...

25 Commits

Author SHA1 Message Date
gryf 82ab2d2d06 Correct calculation of usable space for reserved area.
Previous patch has correct the way, how reserved area found in
_NET_WM_STRUT was calculated. Unfortunately, the calculation was not
precise, as for not reserved areas (i.e. values of 0 for one of the
cardinals is set) must be calculated anyway for given head, otherwise
usable area might be too broad.
2021-03-18 16:08:40 +00:00
gryf bbf24d1d39 Correct way for reserved space on multihead environment.
Applications such a panels or docks have ability for reserving space so
that no windows should cover or overlap them. There is (partially)
support for it by checking the _NET_WM_STRUT property, although
calculation for the reserved space was wrong in case of several heads
enabled.

In this patch calculation for reserved area has been corrected.
2021-03-16 20:39:54 +00:00
Helge Kreutzmann 224cb403a7 Tippfehler in de.po von WPrefs (WindowMaker)
per Zufall habe ich einen Tippfehler gefunden
2020-12-07 16:53:16 +00:00
Nick Berendsen 1cd8fea423 Add support for _NET_WM_STATE_FOCUSED
Thanks to Jeremy Sowden for sending the patch to the mailing list.

Signed-off-by: Carlos R. Mafra <crmafra@gmail.com>
2020-10-27 15:35:08 +00:00
Diedrich Vorberg a98680cd14 Patch for GetCommandForPid() in osdep_darwin.c
the function mentioned above caused segfaults on MacOS. The attached patch
seems to solve that.

Details: The functions provides an array of string pointers (the argument
vector) pointing to a buffer allocated and referred to by a static local
variable `args`. This buffer was used on each subsequent call. For one
thing this would overwrite old values and for another this caused segfaults.

My new implementation allocates a buffer for the argument vector plus the
actual string data on each call. The caller will wfree() the buffer, but
until then has available an independent copy of the strings.
2020-10-19 20:38:29 +01:00
Alexander Komarov 7d423a3a0f Added Expert option: "Close rootmenu when mouse (left or right) is clicked outside focus.
Common WindowMaker's rootmenu behavior if press right mouse button open menu and close only with same button.
It's uncomfortably, it patch  allows close menu by left or right is clicked outside focus.
Changed func "static WMenu*configureMenu(WScreen *scr, WMPropList *definition)" to non-static forglobal use.
Added new  OPTION_WMAKER for this Expert-option. Changed event.c: for correct work should use initialization
func configureMenu afterwMenuDestroy (this is a feature of the event implementation XEvent).
2020-09-13 16:56:09 +01:00
Alexander Komarov 033d2d9a6f Changed Russian translation 2020-08-11 10:49:13 +01:00
Alexander Komarov 6e2075f3df Double click on titlebar maximize a window to fullscreen 2020-08-10 12:15:01 +01:00
XOR 5d2fd7bf7e WPrefs: Create Turkish translation 2020-06-28 17:54:15 +01:00
Christophe CURIS f6742662ec Tell git to ignore files created during i18n preparation
The 'pot' files are templates generated when we want to update the 'po'
files against latest source code;

the 'mo' files are compiled 'po' files to be installed
2020-06-28 11:33:31 +01:00
Doug Torrance 583f66ec4e Turn off automake's warning messages about using GNU make extensions
We've been using addsuffix in WindowMaker/Makefile.am and may use others
in the future.
2020-06-22 18:07:09 +01:00
gryf cd23e77fd1 Remove Debian related build files.
Keeping Debian related build files should not be the duty of wmaker
development team, but Debian package maintainers.
2020-05-31 17:34:28 +01:00
gryf 230a501d36 Fix typo on defining imagemagick version.
In this patch we will fix an issue during compilation on systems, which
have ImageMagick version 7, and slightly more recent version of
compiler. If we define USE_MAGICK with null value, compilation will fail
on preprocessor check on such defined variable.
2020-04-20 09:03:56 +01:00
Doug Torrance 3022edd060 wrlib: Fix typo in macro containing ImageMagick version
It's USE_MAGICK, not USE_MAGIC.  Also, we wrap the if/else statement
in an ifdef.  This doesn't really affect anything since load_magick.c
won't be compiled if USE_MAGICK is undefined because of an if statement
in the Makefile.  But in the off chance that it is somehow, then we will
try to load a nonexistent version 6 header file since USE_MAGICK will
be interprested as 0 and 0 < 7 is true.
2020-04-19 07:58:28 +01:00
Doug Torrance 1713a88656 debian: Remove ImageMagick patch; an equivalent patch now exists in next
If a user wanted to build a Debian package from the next branch, then
it would fail immediately when quilt tried to apply the patches.
2020-04-19 07:58:28 +01:00
Doug Torrance 00a25db9ea checkpatch.pl: Escape curly braces in regexes
Unescaped curly braces  have been deprecated since Perl 5.26 and are
illegal in Perl 5.30. I copied the relevant lines from the latest kernel
source, so we'll inherit a couple other improvements as well.
2020-04-18 22:27:29 +01:00
Doug Torrance c678580621 debian: Update with version 0.95.9-2 packaging. 2020-04-18 19:49:26 +01:00
Doug Torrance 44bc9cc264 Fix various abs() issues.
The abs() function should take an int as argument, but there were
several instances in the code where it was taking an unsigned int or a
double.  In these case, we took one of the following approaches:

* If the argument was a double, use fabs() instead.
* If the argument was unsigned and was certainly going to be positive
  (i.e,. no subtraction), then drop abs() altogether.
* If the argument was unsigned as result of adding or subtracting signed
  and unsigned ints, then we cast all the unsigned ints to signed ints.
2020-04-18 19:49:26 +01:00
Doug Torrance dfa92906c0 wrlib: Compile with either ImageMagick 6 and 7
We dropped ImageMagick 6 support in 0.95.9.  However, ImageMagick 6 is
still widespread (e.g., ImageMagick 7 has not been packaged in Debian
yet), and upstream plans on maintaining it until at least 2028 [1].

In this patch, we detect the version of the MagickWand library installed
on the user's system and include the appropriate header file when
building wrlib.

Note: I've only tested this with ImageMagick 6, so I'd appreciate
confirmation that it works with ImageMagick 7.

[1] https://github.com/ImageMagick/ImageMagick6/blob/master/NEWS.txt
2020-04-18 19:49:25 +01:00
Doug Torrance 27dc5efd2e debian: Update with version 0.95.9-1 packaging. 2020-04-17 08:20:50 +01:00
Doug Torrance 86659be668 wmlib: Use X flags from configure
We use the AC_PATH_XTRA macro to find all the X library paths during
build, but we weren't actually using the variables it generated for
building wmlib.  Instead, we just hardcoded the linker flag "-lX11",
which may or may not actually work.
2020-04-09 14:54:06 +01:00
Doug Torrance e314f10909 configure: Fix typo in libXmu check.
As the literal string "wm_cv_xext_xmu" will never be equal to "xno",
we always ran the code that was supposed to run when the variable
$wm_cv_xext_xmu was not equal to "no".  In particular, if libXmu
was not found, then we proceeded as if it had been found.
2020-04-09 14:54:06 +01:00
Doug Torrance 54a24ab6f7 Remove trailing whitespace.
Also, the script is a one-liner, stolen from [1]:

ack --print0 -l '[ \t]+$' | xargs -0 -n1 perl -pi -e 's/[ \t]+$//'

[1]
https://stackoverflow.com/questions/149057/how-to-remove-trailing-whitespace-of-all-files-recursively
2020-04-09 14:28:09 +01:00
Doug Torrance a17d131da3 Remove apostrophes from instances of possessive "its".
I noticed one instance of this while looking at the code the other day,
and after a quick grep, realized it happened a *lot*!  One of the many
frustrating things about the English language is that we use apostrophes
to make pretty much everything possessive *except* the pronoun "it".
In that case, we use "its".  "It's" is reserved for the contraction
meaning "it is" or "it has".
2020-04-09 09:05:50 +01:00
David Michael 6320bb6219 configure: Allow changing default search paths
This changes the behavior of the --with-{inc,lib}s-from arguments
to replace the default paths instead of adding to them.  This is
required when cross-compiling in a sysroot, since the default paths
will include files from the host system which can have an
incompatible architecture.
2020-04-06 16:35:53 +01:00
212 changed files with 3884 additions and 5859 deletions
+10
View File
@@ -120,6 +120,16 @@ WindowMaker/Defaults/WMWindowAttributes
WindowMaker/Defaults/WindowMaker WindowMaker/Defaults/WindowMaker
WindowMaker/IconSets/Default.iconset WindowMaker/IconSets/Default.iconset
# These files are generated by the i18n process
/po/WindowMaker.pot
/po/*.mo
/WINGs/po/WINGs.pot
/WINGs/po/*.mo
/WPrefs.app/po/WPrefs.pot
/WPrefs.app/po/*.mo
/util/po/*.pot
/util/po/*.mo
# Some text editors generate backup files # Some text editors generate backup files
*~ *~
+3 -3
View File
@@ -4063,7 +4063,7 @@ Changes since version 0.17.5:
icons icons
- fixed bug in focusfollowmouse that made windows under the currently - fixed bug in focusfollowmouse that made windows under the currently
focused window that close, to not get the focus focused window that close, to not get the focus
- if the app is a .app, it will try to find it's icon in the .app - if the app is a .app, it will try to find its icon in the .app
directory and save it in the WMWindowAttributes, so that the dock can use it. directory and save it in the WMWindowAttributes, so that the dock can use it.
- drag docklets that select for mouse events to with Alt+drag - drag docklets that select for mouse events to with Alt+drag
@@ -4934,7 +4934,7 @@ Changes since version 0.3.2:
- application icons (not mini-windows) like I think how it is on NEXTSTEP(tm) - application icons (not mini-windows) like I think how it is on NEXTSTEP(tm)
- fixed "slippery" icon movement - fixed "slippery" icon movement
- added a Dock (not for GNUstep, as it will have it's own) - added a Dock (not for GNUstep, as it will have its own)
Changes since version 0.3.1: Changes since version 0.3.1:
............................ ............................
@@ -4964,7 +4964,7 @@ it's opened to select items, just drag the pointer
- transient owners get a different titlebar color when the focus - transient owners get a different titlebar color when the focus
is in the transient (e.g, in NeXTese: mainWindow is highlighted correctly when is in the transient (e.g, in NeXTese: mainWindow is highlighted correctly when
the keyWindow is a panel) the keyWindow is a panel)
- when transient is closed, it's owner always get the focus - when transient is closed, its owner always get the focus
- fixed XGrabButton/BadAccess bug - fixed XGrabButton/BadAccess bug
- fixed window_count error (this time I'm 90% sure) - fixed window_count error (this time I'm 90% sure)
- fixed focusNextWindow through Alt-Tab bug with non-focusable windows - fixed focusNextWindow through Alt-Tab bug with non-focusable windows
+3 -3
View File
@@ -333,7 +333,7 @@ Window Maker distribution.
The author Anthony Quinn <southgat@frontiernet.net> has released a The author Anthony Quinn <southgat@frontiernet.net> has released a
version that works with Window Maker >= 0.15.x. It is available from version that works with Window Maker >= 0.15.x. It is available from
it's home page at http://www.frontiernet.net/~southgat/wmsound/ its home page at http://www.frontiernet.net/~southgat/wmsound/
or on Largo's site at http://wm.current.nu/files.html#wmsound or on Largo's site at http://wm.current.nu/files.html#wmsound
for your convenience. for your convenience.
@@ -352,7 +352,7 @@ GNOME application they have no title bar" below.
To use it with CDE, read the answer for "How do I switch To use it with CDE, read the answer for "How do I switch
CDE's window manager to use Window Maker?" CDE's window manager to use Window Maker?"
To use it with KDE, read it's documentation to get rid of kwm (and possibly To use it with KDE, read its documentation to get rid of kwm (and possibly
kpanel) and replace it with wmaker. Then, start WPrefs.app, go to "Mouse kpanel) and replace it with wmaker. Then, start WPrefs.app, go to "Mouse
Preferences" and set the "Disable mouse actions" check box. You will Preferences" and set the "Disable mouse actions" check box. You will
need to restart Window Maker to make this change take effect. The need to restart Window Maker to make this change take effect. The
@@ -1283,7 +1283,7 @@ WM_NORMAL_HINTS(WM_SIZE_HINTS):
user specified size: 400 by 300 user specified size: 400 by 300
program specified minimum size: 400 by 300 program specified minimum size: 400 by 300
Now, when scilab opens it's window, Window Maker nicely does exactly what it Now, when scilab opens its window, Window Maker nicely does exactly what it
is told, that is, map the window at position 136679205, 1074468360 which is told, that is, map the window at position 136679205, 1074468360 which
obviously falls outside the screen no matter how big is your monitor ;) obviously falls outside the screen no matter how big is your monitor ;)
+3 -3
View File
@@ -1643,7 +1643,7 @@ raising/lowering there is a time threshold before raising/lowering.
The thresholds can be changed in wconfig.h by changing one or both of The thresholds can be changed in wconfig.h by changing one or both of
AUTO_LOWER_DELAY and AUTO_RAISE_DELAY (expressed in milliseconds). AUTO_LOWER_DELAY and AUTO_RAISE_DELAY (expressed in milliseconds).
For example if you set AUTO_RAISE_DELAY to 0, then the Clip will be raised as For example if you set AUTO_RAISE_DELAY to 0, then the Clip will be raised as
soon as the mouse pointer enters it's area. Setting AUTO_RAISE_DELAY to a very soon as the mouse pointer enters its area. Setting AUTO_RAISE_DELAY to a very
big value, will make the Clip to practically do not auto raise unless clicked, big value, will make the Clip to practically do not auto raise unless clicked,
but to be automatically lowered after AUTO_LOWER_DELAY (ms) when leaved. but to be automatically lowered after AUTO_LOWER_DELAY (ms) when leaved.
@@ -2572,7 +2572,7 @@ The OPEN_MENU command now supports the following syntax:
// it in current position // it in current position
OPEN_MENU file.menu OPEN_MENU file.menu
2. Pipe menu handling. 2. Pipe menu handling.
// opens command and uses it's stdout to construct menu. // opens command and uses its stdout to construct menu.
// Command's output must be a valid menu description. // Command's output must be a valid menu description.
OPEN_MENU | command OPEN_MENU | command
3. Directory handling. 3. Directory handling.
@@ -3175,7 +3175,7 @@ when they are first mapped
titlebar gradients are in a single piece now titlebar gradients are in a single piece now
the WMDock file was merged into the WMState file. You can insert this the WMDock file was merged into the WMState file. You can insert this
file in WMState and set it's key to Dock. For example, if your WMDock file in WMState and set its key to Dock. For example, if your WMDock
contains: contains:
{ {
+2 -2
View File
@@ -178,7 +178,7 @@ Running multiple instances of Window Maker
It is not a good idea to run more than one instance of Window Maker It is not a good idea to run more than one instance of Window Maker
from the same user (so that wmaker will use the same configuration files) at the from the same user (so that wmaker will use the same configuration files) at the
same time. You might get unexpected behavior when Window Maker updates it's same time. You might get unexpected behavior when Window Maker updates its
configuration files. configuration files.
If you really desire to do this, try running Window Maker with the command line If you really desire to do this, try running Window Maker with the command line
@@ -209,7 +209,7 @@ while keeping a nice appearance and good functionality, follow the items bellow:
- remove support for image formats you don't use - remove support for image formats you don't use
- to reduce memory usage, disable the icon cache, by setting the RIMAGE_CACHE - to reduce memory usage, disable the icon cache, by setting the RIMAGE_CACHE
environment variable to 0. If you want to increase performance at the cost of environment variable to 0. If you want to increase performance at the cost of
memory usage, set it's value to a value like the number of different icons you memory usage, set its value to a value like the number of different icons you
use. Also, disable anti-aliased text support in ~/GNUstep/Defaults/WMGLOBAL. use. Also, disable anti-aliased text support in ~/GNUstep/Defaults/WMGLOBAL.
+6 -6
View File
@@ -8,25 +8,25 @@
kojima@windowmaker.info kojima@windowmaker.info
WINGs is a small widget set with the N*XTSTEP look and feel. It's API WINGs is a small widget set with the N*XTSTEP look and feel. Its API
is inspired in OpenStep and it's implementation borrows some ideas is inspired in OpenStep and its implementation borrows some ideas
from Tk. It has a reasonable set of widgets, sufficient for building from Tk. It has a reasonable set of widgets, sufficient for building
small applications (like a CDPlayer or hacking something like rxvt). It small applications (like a CDPlayer or hacking something like rxvt). It
also has other functions that are usefull for applications, like a also has other functions that are usefull for applications, like a
User Defaults alike configuration manager and a notification system. User Defaults alike configuration manager and a notification system.
The library is limited and it's design is a little sloppy, The library is limited and its design is a little sloppy,
so it's not intended to build large or complex applications, like so it's not intended to build large or complex applications, like
anything more complex than a CDPlayer. GNUstep should be used for such anything more complex than a CDPlayer. GNUstep should be used for such
applications. applications.
Since WINGs is written in C and is sort of low-level it is small Since WINGs is written in C and is sort of low-level it is small
and faster than say, Motif or even Athena. Knowing Xlib will help you to and faster than say, Motif or even Athena. Knowing Xlib will help you to
workaround some of it's limitations, although you'll probably be able to workaround some of its limitations, although you'll probably be able to
write something like a trivial tic-tac-toe game without knowing much Xlib. write something like a trivial tic-tac-toe game without knowing much Xlib.
Some of it's functions are designed to support the Window Maker window Some of its functions are designed to support the Window Maker window
manager (see http://windowmaker.info) In fact, it's primary role is to manager (see http://windowmaker.info) In fact, its primary role is to
support Window Maker. All other uses of it are just an added bonus. support Window Maker. All other uses of it are just an added bonus.
It will help you to understand the API if you read the ApplicationKit It will help you to understand the API if you read the ApplicationKit
+1 -1
View File
@@ -945,7 +945,7 @@ void WMSetFocusToWidget(WMWidget * widget)
/* /*
* WMRealizeWidget- * WMRealizeWidget-
* Realizes the widget and all it's children. * Realizes the widget and all its children.
* *
*/ */
void WMRealizeWidget(WMWidget * w) void WMRealizeWidget(WMWidget * w)
+7 -1
View File
@@ -113,7 +113,13 @@ static const struct {
/* default: */ False, OPTION_WMAKER, "OpenTransientOnOwnerWorkspace" }, /* default: */ False, OPTION_WMAKER, "OpenTransientOnOwnerWorkspace" },
{ N_("Wrap dock-attached icons around the screen edges."), { N_("Wrap dock-attached icons around the screen edges."),
/* default: */ True, OPTION_WMAKER, "WrapAppiconsInDock" } /* default: */ True, OPTION_WMAKER, "WrapAppiconsInDock" },
{ N_("Double click on titlebar maximize a window to full screen."),
/* default: */ False, OPTION_WMAKER, "DbClickFullScreen" },
{ N_("Close rootmenu when mouse (left or right) is clicked outside focus."),
/* default: */ False, OPTION_WMAKER, "CloseRootMenuByLeftOrRightMouseClick" }
}; };
+2 -1
View File
@@ -22,6 +22,7 @@
#include "WPrefs.h" #include "WPrefs.h"
#include <unistd.h> #include <unistd.h>
#include <fontconfig/fontconfig.h> #include <fontconfig/fontconfig.h>
#include <math.h>
/* workaround for older fontconfig, that doesn't define these constants */ /* workaround for older fontconfig, that doesn't define these constants */
#ifndef FC_WEIGHT_NORMAL #ifndef FC_WEIGHT_NORMAL
@@ -521,7 +522,7 @@ static void selectedOption(WMWidget * w, void *data)
WMListItem *item = WMGetListItem(panel->sizeL, i); WMListItem *item = WMGetListItem(panel->sizeL, i);
int distance; int distance;
distance = abs(size - atoi(item->text)); distance = fabs(size - atoi(item->text));
if (i == 0 || distance < closest) { if (i == 0 || distance < closest) {
closest = distance; closest = distance;
+3 -3
View File
@@ -7,7 +7,7 @@
WPrefs.app is the preferences "editor" for the WindowMaker window WPrefs.app is the preferences "editor" for the WindowMaker window
manager. It can be used to set most of the preference options of WindowMaker manager. It can be used to set most of the preference options of WindowMaker
and define it's applications menu. It also can change some settings and define its applications menu. It also can change some settings
that do not belong to WindowMaker. that do not belong to WindowMaker.
Although WPrefs.app is designed to be easy to use, you should read the Although WPrefs.app is designed to be easy to use, you should read the
@@ -16,7 +16,7 @@ of WindowMaker that are not related to configuration.
To run WPrefs, do not put it in your search path. Instead, run it To run WPrefs, do not put it in your search path. Instead, run it
with the full path, like /usr/local/GNUstep/Applications/WPrefs.app/WPrefs with the full path, like /usr/local/GNUstep/Applications/WPrefs.app/WPrefs
Then, dock it's application icon. The dock will automatically detect it's Then, dock its application icon. The dock will automatically detect its
icon and use it. icon and use it.
If you change configuration often, you might want to leave WPrefs If you change configuration often, you might want to leave WPrefs
@@ -46,7 +46,7 @@ The mouse speed configuration is saved as a call for xset in
~/G/D/L/W/autostart. WindowMaker calls this file when it is started. ~/G/D/L/W/autostart. WindowMaker calls this file when it is started.
If you don't want or can't use the menu definition section, do not If you don't want or can't use the menu definition section, do not
open it's section (or if you do open it, do not Save), or WPrefs will open its section (or if you do open it, do not Save), or WPrefs will
overwrite your ~/G/D/WMRootMenu file. overwrite your ~/G/D/WMRootMenu file.
Only options that have different values than what is found in the Only options that have different values than what is found in the
+1 -1
View File
@@ -5,7 +5,7 @@ CATALOGS = @WPREFSMOFILES@
CLEANFILES = $(DOMAIN).pot $(CATALOGS) CLEANFILES = $(DOMAIN).pot $(CATALOGS)
EXTRA_DIST = bg.po ca.po cs.po de.po es.po et.po fi.po fr.po fy.po hr.po hu.po \ EXTRA_DIST = bg.po ca.po cs.po de.po es.po et.po fi.po fr.po fy.po hr.po hu.po \
it.po ja.po ko.po nl.po pt.po ru.po sk.po uk.po zh_CN.po zh_TW.po it.po ja.po ko.po nl.po pt.po ru.po sk.po tr.po uk.po zh_CN.po zh_TW.po
POTFILES = \ POTFILES = \
$(top_srcdir)/WPrefs.app/Appearance.c \ $(top_srcdir)/WPrefs.app/Appearance.c \
+1 -1
View File
@@ -819,7 +819,7 @@ msgstr "Clip in den Vor-/Hintergrund"
#: ../../WPrefs.app/KeyboardShortcuts.c:518 #: ../../WPrefs.app/KeyboardShortcuts.c:518
msgid "Toggle keyboard language" msgid "Toggle keyboard language"
msgstr "Tastatursbelegung ändern" msgstr "Tastaturbelegung ändern"
#: ../../WPrefs.app/KeyboardShortcuts.c:532 #: ../../WPrefs.app/KeyboardShortcuts.c:532
msgid "Shortcut" msgid "Shortcut"
+1 -1
View File
@@ -1671,7 +1671,7 @@ msgstr "Keela tiitliriba"
msgid "" msgid ""
"Remove the titlebar of this window.\n" "Remove the titlebar of this window.\n"
"To access the window commands menu of a window\n" "To access the window commands menu of a window\n"
"without it's titlebar, press Control+Esc (or the\n" "without its titlebar, press Control+Esc (or the\n"
"equivalent shortcut, if you changed the default\n" "equivalent shortcut, if you changed the default\n"
"settings)." "settings)."
msgstr "" msgstr ""
+69 -18
View File
@@ -380,45 +380,71 @@ msgstr ""
"параметров и количества цветов для резервирования за\n" "параметров и количества цветов для резервирования за\n"
"Window Maker'ом при работе с 8bit'ным цветом (8bpp)." "Window Maker'ом при работе с 8bit'ным цветом (8bpp)."
#: ../../WPrefs.app/Expert.c:75 #: ../../WPrefs.app/Expert.c:44
msgid "" msgid "Disable miniwindows (icons for minimized windows). For use with KDE/GNOME."
"Disable miniwindows (icons for miniaturized windows). For use with KDE/GNOME." msgstr "Запретить миниокна иконки для минимизированных окон. Для использования с KDE/GNOME."
msgstr ""
"Запретить миниокна (иконки для минимизированных окон). Для использования с "
"KDE/GNOME."
#: ../../WPrefs.app/Expert.c:76 #: ../../WPrefs.app/Expert.c:47
msgid "Ignore decoration hints for GTK applications."
msgstr "Игнорировать декорацию окон для GTK приложений."
#: ../../WPrefs.app/Expert.c:53
msgid "Do not set non-WindowMaker specific parameters (do not use xset)." msgid "Do not set non-WindowMaker specific parameters (do not use xset)."
msgstr "" msgstr ""
"Не устанавливать параметры, не относящиеся непосредственно к\n" "Не устанавливать параметры, не относящиеся непосредственно к\n"
"Window Maker'у (не использовать xset)." "Window Maker'у (не использовать xset)."
#: ../../WPrefs.app/Expert.c:77 #: ../../WPrefs.app/Expert.c:56
msgid "Automatically save session when exiting Window Maker." msgid "Automatically save session when exiting Window Maker."
msgstr "Автоматически сохранять сессию при выходе из Window Maker'а." msgstr "Автоматически сохранять сессию при выходе из Window Maker'а."
#: ../../WPrefs.app/Expert.c:78 #: ../../WPrefs.app/Expert.c:59
msgid "Use SaveUnder in window frames, icons, menus and other objects." msgid "Use SaveUnder in window frames, icons, menus and other objects."
msgstr "Использовать SaveUnder для окон, иконок, меню и других объектов." msgstr "Использовать SaveUnder для окон, иконок, меню и других объектов."
#: ../../WPrefs.app/Expert.c:79 #: ../../WPrefs.app/Expert.c:62
msgid "Use Windoze style cycling."
msgstr "Переключение окон в стиле Windows"
#: ../../WPrefs.app/Expert.c:80
msgid "Disable confirmation panel for the Kill command." msgid "Disable confirmation panel for the Kill command."
msgstr "Запретить диалог подтверждения для команды `Убить'." msgstr "Запретить диалог подтверждения для команды `Убить'."
# awn: FIXME: что это вообще значит?
#: ../../WPrefs.app/Expert.c:81
msgid "Disable selection animation for selected icons." msgid "Disable selection animation for selected icons."
msgstr "Запретить анимацию выбора для выбранных иконок." msgstr "Запретить анимацию выбора для выбранных иконок."
#: ../../WPrefs.app/Expert.c:115 msgid "Show switch panel when cycling windows."
msgstr "Показывать панель переключения окон."
#: ../../WPrefs.app/Expert.c:68
msgid "Smooth font edges (needs restart)."
msgstr "Cглаживание шрифтов (требуется перезагрузка)."
#: ../../WPrefs.app/Expert.c:80
msgid "Show workspace title on Clip."
msgstr "Показывать имя рабочего места на скрепке."
#: ../../WPrefs.app/Expert.c:83
msgid "Highlight the icon of the application when it has the focus."
msgstr "Подсвечивание иконок при нажатии (в фокусе)."
#: ../../WPrefs.app/Expert.c:91
msgid "Maximize (snap) a window to edge or corner by dragging."
msgstr "Прилипания окон по краям и углам."
#: ../../WPrefs.app/Expert.c:100
msgid "Snapping a window to the top maximizes it to the full screen."
msgstr "Распахнуть окно при перетаскивании к верхнему краю."
#: ../../WPrefs.app/Expert.c:118
msgid "Double click on titlebar maximize a window to full screen."
msgstr "Распахнуть окно двойным щелчком."
#: ../../WPrefs.app/Expert.c:121
msgid "Close rootmenu when mouse (left or right) is clicked outside focus."
msgstr "Закрывать меню приложений правым или левым щелчком мыши вне фокуса."
#: ../../WPrefs.app/Expert.c:328
msgid "Expert User Preferences" msgid "Expert User Preferences"
msgstr "Установки для опытного пользователя" msgstr "Установки для опытного пользователя"
#: ../../WPrefs.app/Expert.c:117 #: ../../WPrefs.app/Expert.c:330
msgid "" msgid ""
"Options for people who know what they're doing...\n" "Options for people who know what they're doing...\n"
"Also have some other misc. options." "Also have some other misc. options."
@@ -623,6 +649,11 @@ msgstr ""
"Параметры обработки иконок и миниокон. Размещение иконок,\n" "Параметры обработки иконок и миниокон. Размещение иконок,\n"
"размер иконок, в каком стиле анимировать сворачивание." "размер иконок, в каком стиле анимировать сворачивание."
#: ../../WPrefs.app/Icons.c:414
msgid "Single click activation"
msgstr "Одинарный щелчок мыши"
#: ../../WPrefs.app/imagebrowser.c:95 #: ../../WPrefs.app/imagebrowser.c:95
msgid "View" msgid "View"
msgstr "" msgstr ""
@@ -1901,6 +1932,10 @@ msgstr ""
msgid "Resist" msgid "Resist"
msgstr "Упираться" msgstr "Упираться"
#: ../../WPrefs.app/WindowHandling.c:406
msgid "Opaque Move/Resize"
msgstr "Перемещ/Измен.разм."
#: ../../WPrefs.app/WindowHandling.c:407 #: ../../WPrefs.app/WindowHandling.c:407
msgid "Attract" msgid "Attract"
msgstr "Притягиваться" msgstr "Притягиваться"
@@ -1923,6 +1958,22 @@ msgstr ""
"Как обращаться с окнами. Начальное расположение окон.\n" "Как обращаться с окнами. Начальное расположение окон.\n"
"Сопротивляемость границ. Сплошное/каркасное перемещение, и т.п." "Сопротивляемость границ. Сплошное/каркасное перемещение, и т.п."
#: ../../WPrefs.app/WindowHandling.c:474
msgid "by keyboard"
msgstr "c помощ.клав."
#: ../../WPrefs.app/WindowHandling.c:490
msgid "...do not cover:"
msgstr "не перекрывать:"
#: ../../WPrefs.app/WindowHandling.c:497
msgid "Icons"
msgstr "Иконок"
#: ../../WPrefs.app/WindowHandling.c:502
msgid "The dock"
msgstr "Дока"
#: ../../WPrefs.app/Workspace.c:176 #: ../../WPrefs.app/Workspace.c:176
msgid "Workspace Navigation" msgid "Workspace Navigation"
msgstr "Навигация по рабочим пространствам" msgstr "Навигация по рабочим пространствам"
+2627
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -53,7 +53,7 @@
* // it in current position * // it in current position
* OPEN_MENU file.menu * OPEN_MENU file.menu
* 2. Pipe menu handling. * 2. Pipe menu handling.
* // opens command and uses it's stdout to construct menu. * // opens command and uses its stdout to construct menu.
* // Command's output must be a valid menu description. * // Command's output must be a valid menu description.
* // The space between '|' and command itself is optional. * // The space between '|' and command itself is optional.
* OPEN_MENU | command * OPEN_MENU | command
+1 -1
View File
@@ -45,7 +45,7 @@
* // it in current position * // it in current position
* OPEN_MENU file.menu * OPEN_MENU file.menu
* 2. Pipe menu handling. * 2. Pipe menu handling.
* // opens command and uses it's stdout to construct menu. * // opens command and uses its stdout to construct menu.
* // Command's output must be a valid menu description. * // Command's output must be a valid menu description.
* // The space between '|' and command itself is optional. * // The space between '|' and command itself is optional.
* OPEN_MENU | command * OPEN_MENU | command
+1 -1
View File
@@ -45,7 +45,7 @@
* // it in current position * // it in current position
* OPEN_MENU file.menu * OPEN_MENU file.menu
* 2. Pipe menu handling. * 2. Pipe menu handling.
* // opens command and uses it's stdout to construct menu. * // opens command and uses its stdout to construct menu.
* // Command's output must be a valid menu description. * // Command's output must be a valid menu description.
* // The space between '|' and command itself is optional. * // The space between '|' and command itself is optional.
* OPEN_MENU | command * OPEN_MENU | command
+1 -1
View File
@@ -53,7 +53,7 @@
* // it in current position * // it in current position
* OPEN_MENU file.menu * OPEN_MENU file.menu
* 2. Pipe menu handling. * 2. Pipe menu handling.
* // opens command and uses it's stdout to construct menu. * // opens command and uses its stdout to construct menu.
* // Command's output must be a valid menu description. * // Command's output must be a valid menu description.
* // The space between '|' and command itself is optional. * // The space between '|' and command itself is optional.
* OPEN_MENU | command * OPEN_MENU | command
+1 -1
View File
@@ -53,7 +53,7 @@
* // it in current position * // it in current position
* OPEN_MENU file.menu * OPEN_MENU file.menu
* 2. Pipe menu handling. * 2. Pipe menu handling.
* // opens command and uses it's stdout to construct menu. * // opens command and uses its stdout to construct menu.
* // Command's output must be a valid menu description. * // Command's output must be a valid menu description.
* // The space between '|' and command itself is optional. * // The space between '|' and command itself is optional.
* OPEN_MENU | command * OPEN_MENU | command
+1 -1
View File
@@ -53,7 +53,7 @@
* // it in current position * // it in current position
* OPEN_MENU file.menu * OPEN_MENU file.menu
* 2. Pipe menu handling. * 2. Pipe menu handling.
* // opens command and uses it's stdout to construct menu. * // opens command and uses its stdout to construct menu.
* // Command's output must be a valid menu description. * // Command's output must be a valid menu description.
* // The space between '|' and command itself is optional. * // The space between '|' and command itself is optional.
* OPEN_MENU | command * OPEN_MENU | command
+1 -1
View File
@@ -52,7 +52,7 @@
* // it in current position * // it in current position
* OPEN_MENU file.menu * OPEN_MENU file.menu
* 2. Pipe menu handling. * 2. Pipe menu handling.
* // opens command and uses it's stdout to construct menu. * // opens command and uses its stdout to construct menu.
* // Command's output must be a valid menu description. * // Command's output must be a valid menu description.
* // The space between '|' and command itself is optional. * // The space between '|' and command itself is optional.
* OPEN_MENU | command * OPEN_MENU | command
+8 -6
View File
@@ -2419,8 +2419,10 @@ sub process {
# function brace can't be on same line, except for #defines of do while, # function brace can't be on same line, except for #defines of do while,
# or if closed on same line # or if closed on same line
if (($line=~/$Type\s*$Ident\(.*\).*\s{/) and if ($line =~ /$Type\s*$Ident\s*$balanced_parens\s*\{/ &&
!($line=~/\#\s*define.*do\s{/) and !($line=~/}/)) { $line !~ /\#\s*define\b.*do\s*\{/ &&
$line !~ /}/) {
ERROR("OPEN_BRACE", ERROR("OPEN_BRACE",
"open brace '{' following function declarations go on the next line\n" . $herecurr); "open brace '{' following function declarations go on the next line\n" . $herecurr);
} }
@@ -2847,12 +2849,12 @@ sub process {
#need space before brace following if, while, etc #need space before brace following if, while, etc
if (($line =~ /\(.*\){/ && $line !~ /\($Type\){/) || if (($line =~ /\(.*\)\{/ && $line !~ /\($Type\)\{/) ||
$line =~ /do{/) { $line =~ /\b(?:else|do)\{/) {
if (ERROR("SPACING", if (ERROR("SPACING",
"space required before the open brace '{'\n" . $herecurr) && "space required before the open brace '{'\n" . $herecurr) &&
$fix) { $fix) {
$fixed[$linenr - 1] =~ s/^(\+.*(?:do|\))){/$1 {/; $fixed[$linenr - 1] =~ s/^(\+.*(?:do|else|\)))\{/$1 {/;
} }
} }
@@ -3198,7 +3200,7 @@ sub process {
$dstat !~ /^for\s*$Constant$/ && # for (...) $dstat !~ /^for\s*$Constant$/ && # for (...)
$dstat !~ /^for\s*$Constant\s+(?:$Ident|-?$Constant)$/ && # for (...) bar() $dstat !~ /^for\s*$Constant\s+(?:$Ident|-?$Constant)$/ && # for (...) bar()
$dstat !~ /^do\s*{/ && # do {... $dstat !~ /^do\s*{/ && # do {...
$dstat !~ /^\({/ && # ({... $dstat !~ /^\(\{/ && # ({...
$ctx !~ /^.\s*#\s*define\s+TRACE_(?:SYSTEM|INCLUDE_FILE|INCLUDE_PATH)\b/) $ctx !~ /^.\s*#\s*define\s+TRACE_(?:SYSTEM|INCLUDE_FILE|INCLUDE_PATH)\b/)
{ {
$ctx =~ s/\n*$//; $ctx =~ s/\n*$//;
+4 -8
View File
@@ -41,7 +41,7 @@ AC_CONFIG_HEADERS([config.h])
dnl We need the EXTRA_xxx_DEPENDENCIES keyword in Makefiles which have been dnl We need the EXTRA_xxx_DEPENDENCIES keyword in Makefiles which have been
dnl introduced in the version 1.11.3; because the 1.12 was realeased shortly dnl introduced in the version 1.11.3; because the 1.12 was realeased shortly
dnl after, we just ask for it dnl after, we just ask for it
AM_INIT_AUTOMAKE([1.12 silent-rules]) AM_INIT_AUTOMAKE([1.12 silent-rules -Wno-portability])
dnl Reference file used by 'configure' to make sure the path to sources is valid dnl Reference file used by 'configure' to make sure the path to sources is valid
AC_CONFIG_SRCDIR([src/WindowMaker.h]) AC_CONFIG_SRCDIR([src/WindowMaker.h])
@@ -284,18 +284,14 @@ _bindir=`eval echo $_bindir`
_libdir=`eval echo $libdir` _libdir=`eval echo $libdir`
_libdir=`eval echo $_libdir` _libdir=`eval echo $_libdir`
lib_search_path='-L${libdir}'
inc_search_path='-I${includedir}'
dnl =============================================== dnl ===============================================
dnl Specify paths to look for libraries and headers dnl Specify paths to look for libraries and headers
dnl =============================================== dnl ===============================================
AC_ARG_WITH(libs-from, AS_HELP_STRING([--with-libs-from], [pass compiler flags to look for libraries]), AC_ARG_WITH(libs-from, AS_HELP_STRING([--with-libs-from], [pass compiler flags to look for libraries]),
[lib_search_path="$withval $lib_search_path"]) [lib_search_path="$withval"], [lib_search_path='-L${libdir}'])
AC_ARG_WITH(incs-from, AS_HELP_STRING([--with-incs-from], [pass compiler flags to look for header files]), AC_ARG_WITH(incs-from, AS_HELP_STRING([--with-incs-from], [pass compiler flags to look for header files]),
[inc_search_path="$withval $inc_search_path"]) [inc_search_path="$withval"], [inc_search_path='-I${includedir}'])
dnl Features Configuration dnl Features Configuration
@@ -468,7 +464,7 @@ AC_PATH_XTRA
AS_IF([test "x$no_x" = "xyes"], AS_IF([test "x$no_x" = "xyes"],
[AC_MSG_ERROR([The path for the X11 files not found! [AC_MSG_ERROR([The path for the X11 files not found!
Make sure you have X and it's headers and libraries (the -devel packages Make sure you have X and its headers and libraries (the -devel packages
in Linux) installed.])]) in Linux) installed.])])
X_LIBRARY_PATH=$x_libraries X_LIBRARY_PATH=$x_libraries
-203
View File
@@ -1,203 +0,0 @@
Window Maker for DEBIAN
=======================
This is Debian GNU/Linux's prepackaged version of Window Maker, yet
another window manager, written mostly from scratch by Alfredo Kojima
in an attempt to provide as much of the useful OpenStep functionality
as possible under X11. It is the natural step after AfterStep.
There are some changes in the paths, added support for Debian menu
system, improved user configuration (from the sysadmin point of view).
To run Window Maker put this at the end of ~/.xsession:
exec /usr/bin/wmaker
and remove other exec lines if present. I have done my best to
overcome certain glitches and gotchas regarding Window Maker
installation. /usr/bin/wmaker is a shell script that tries to
make sure things are properly set up. Take a look at it to see what's
going on. Please read wmaker(1).
Other sources for documentation
-------------------------------
* The Window Maker web site
http://www.windowmaker.org/
You can find all sorts of information here. It's kept very up to
date.
* The Window Maker manual written by Alfredo Kojima
ftp://ftp.windowmaker.org/pub/wmaker/docs/
Please note the manual documents version 0.10.x of Window Maker, and
many features/changes have occurred since then. To find out what has
changed, please read file:/usr/share/doc/wmaker/NEWS.gz and
file:/usr/share/doc/wmaker/changelog.gz. A new version of this manual is
being developed. If you want to contribute to the manual please
contact wm-user@windowmaker.info
* The Window Maker mailing list
http://www.windowmaker.org/lists.php
There's a Window Maker mailing list. There you can ask questions about
Window Maker and *related* applications (s/n is _way_ low nowadays
due to unrelated discussions).
Please read the archives before asking!
* The Window Maker FAQ
http://www.dpo.uab.edu/~grapeape/wmfaq.html
This is NOT file:/usr/share/doc/wmaker/FAQ.gz, but another document.
It contains information about several aspects of Window Maker that are
not covered on the FAQ included alongside with this Readme.
* The Window Maker Configuration documents
ftp://ftp.windowmaker.info/pub/wmaker/docs/WindowMaker-*-Config.txt.gz
This documents the files found on ~/GNUstep/Defaults/. It's kept as
up to date as possible.
As a sidenote, I can't package these files with wmaker because they
don't have a copyright statement that permits redistribution.
Debian specific notes
---------------------
Debian prepackaged version of Window Maker will search
~/GNUstep/Library/WindowMaker and /usr/share/WindowMaker (in that order)
for its configuration files. It will read defaults from files in
~/GNUstep/Defaults and /etc/GNUstep/Defaults. The files in the
WindowMaker directories have cpp-like format and are preprocessed by
WindowMaker. It will read both WindowMaker directories searching for
#included files.
WindowMaker makes a (little) difference between Pixmaps and Icons, and
there are two configurable options for setting the paths Window Maker
would search Pixmaps and Icons in, namely, PixmapPath and
IconPath. The compiled in defaults are:
PixmapPath = (
"~/GNUstep/Library/WindowMaker/Pixmaps",
"~/GNUstep/Library/WindowMaker/Backgrounds",
"/usr/local/share/WindowMaker/Pixmaps",
"/usr/local/share/WindowMaker/Backgrounds",
"/usr/share/WindowMaker/Backgrounds",
"/usr/share/WindowMaker/Pixmaps",
"/usr/local/share/pixmaps",
"/usr/share/pixmaps",
);
IconPath = (
"~/GNUstep/Library/Icons",
"/usr/local/share/WindowMaker/Icons",
"/usr/share/WindowMaker/Icons",
"/usr/local/share/icons",
"/usr/share/icons",
);
Please note that the internal default doesn't include the "Pixmaps"
paths anymore, but you are free to modify your Window Maker file in any
way you see fit.
Other Window Maker packages should put pixmaps in
/usr/share/WindowMaker/Pixmaps and icons in
/usr/share/WindowMaker/Icons, ONLY.
The structure Window Maker tries to use is like this:
GNUstep
+.AppInfo
+Defaults
+Library
+WindowMaker
+ Backgrounds [*]
+ IconSets [*]
+ Pixmaps
+ Sounds
+ Styles [*]
+ Themes [*]
+Icons
Please note Icons are not considered Window Maker-only resources.
[*] these directories are OPEN_MENU'ed WITH the right
application. That means you can put the *file* "Great Debian Theme" on
Themes, it will show up in the menu, and will be opened using
setstyle, which installs it, i.e., sets that theme as the current
theme.
If you don't like the arrangement of the Appearance menu, you can put
a file "appearance.menu" in ~/GNUstep/Library/WindowMaker, and it will
override the default one. Look at /etc/GNUstep/Defaults/appearance.menu
for an example.
Shortcuts
---------
Thanks to a suggestion, there's support for Shortcuts. If you want to
have Shift F1 launch an XTerm, you can:
$ cp /usr/lib/menu/xterm /etc/menu
$ sensible-editor /etc/menu/xterm
add:
shortcut=Shift+F1
and run update-menus.
Sound Support
-------------
This version of Window Maker is compiled with sound support. The sound
server is available as a separate package, but may not be in sync with
the current release.
Changing the menus (or "WPrefs segfaults when I click the cute menu icon")
--------------------------------------------------------------------------
First of all, I have this urge to say that it doesn't segfault for
me. It gives me a nice warning about being unable to use my current
menu.
The problem is that wmaker now is capable of using a new type of menu,
namely a PropList menu. It looks something like this:
(
Applications,
(Debian, OPEN_MENU, menu.hook),
(
WorkSpace,
(Appearance, OPEN_MENU, appearance.menu),
(Workspaces, WORKSPACE_MENU),
("Arrange Icons", ARRANGE_ICONS),
("Hide Others", HIDE_OTHERS),
("Show All Windows", SHOW_ALL),
("Clear Session", CLEAR_SESSION),
("Save Session", EXEC, "")
),
(About..., INFO_PANEL),
(Exit, SHUTDOWN)
)
That cute looking menu button (let's call it by its name: the Menu
Guru) in WPrefs expects to find a menu in this format. I considered
changing the menu-method to something that spits out a menu in this
format (it's quite easy) but there's a little tiny problem: see that
line that reads "OPEN_MENU" in the example above... well, it happens
that appearance.menu has to be in the old format. That means that if
I make the menu method produce a new style menu, that menu has to be
the root menu. And that is not a good idea (the reason is left as an
exercise to the reader, take into account the people that aren't using
menu.hook as the root menu in the first place).
Still want to use WPrefs to edit you menu? Cut and paste the example
above into ~/GNUstep/Defaults/WMRootMenu, start WPrefs, click the Menu
Guru (the 9th icon, left to right). Now go read the docs. That's the
reason they are there.
Marcelo E. Magallon <mmagallo@debian.org>, Thr, 1 Apr 1999 18:47:30 -0600
-2609
View File
File diff suppressed because it is too large Load Diff
-1
View File
@@ -1 +0,0 @@
10
-196
View File
@@ -1,196 +0,0 @@
Source: wmaker
Section: x11
Priority: optional
Maintainer: Debian Window Maker Team <pkg-wmaker-devel@lists.alioth.debian.org>
Uploaders: Andreas Metzler <ametzler@debian.org>,
Doug Torrance <dtorrance@piedmont.edu>
Standards-Version: 4.0.1
Build-Depends: automake (>= 1:1.12),
debhelper (>= 10),
gettext,
libfontconfig1-dev,
libgif-dev,
libjpeg-dev,
libpng-dev,
libsm-dev,
libtiff-dev,
libtool,
libx11-dev,
libxext-dev,
libxft-dev,
libxinerama-dev,
libxkbfile-dev,
libxmu-dev,
libxpm-dev,
libxrandr-dev,
libxrender-dev,
libxt-dev,
sharutils
Homepage: http://windowmaker.org/
Vcs-Browser: https://anonscm.debian.org/git/pkg-wmaker/wmaker.git
Vcs-Git: https://anonscm.debian.org/git/pkg-wmaker/wmaker.git
Package: wmaker
Architecture: any
Multi-Arch: foreign
Depends: wmaker-common (= ${source:Version}),
${misc:Depends},
${shlibs:Depends}
Provides: x-window-manager
Suggests: desktop-base,
wmaker-data,
wmaker-utils,
x-terminal-emulator,
x11-apps,
xterm
Breaks: wmaker-common (<< 0.95.8-2~)
Replaces: wmaker-common (<< 0.95.8-2~)
Description: NeXTSTEP-like window manager for X
Written by Alfredo Kojima almost from scratch, resembles the NeXTStep look
very closely, and it is now an official GNU project. Window Maker (originally
named WindowMaker) is not overloaded with features, and it is easier to
configure than most other window managers. Its final goal is to produce a
window manager that doesn't require editing of configuration files.
Window Maker is fast and doesn't require tons of memory to run.
Package: wmaker-common
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}
Suggests: wmaker
Description: Window Maker - Architecture independent files
Written by Alfredo Kojima almost from scratch, resembles the NeXTStep look
very closely, and it is now an official GNU project. Window Maker (originally
named WindowMaker) is not overloaded with features, and it is easier to
configure than most other window managers. Its final goal is to produce a
window manager that doesn't require editing of configuration files.
Window Maker is fast and doesn't require tons of memory to run.
.
This package contains the architecture independent files.
Package: wmaker-utils
Architecture: any
Multi-Arch: foreign
Depends: ${misc:Depends}, ${shlibs:Depends}
Breaks: wmaker (<< 0.95.7-6)
Replaces: wmaker (<< 0.95.7-6)
Description: Window Maker - Utilities
Written by Alfredo Kojima almost from scratch, resembles the NeXTStep look
very closely, and it is now an official GNU project. Window Maker (originally
named WindowMaker) is not overloaded with features, and it is easier to
configure than most other window managers. Its final goal is to produce a
window manager that doesn't require editing of configuration files.
Window Maker is fast and doesn't require tons of memory to run.
.
This package contains wxcopy and wxpaste, two utilities ordinarily shipped with
Window Maker but not depending on it or any of its libraries. These
utilities allow users to interact with cut buffers on the command line.
Package: libwraster-dev
Architecture: any
Multi-Arch: same
Section: libdevel
Depends: libc6-dev,
libgif-dev,
libjpeg-dev,
libpng-dev,
libtiff5-dev,
libwraster6 (= ${binary:Version}),
libx11-dev,
libxext-dev,
libxpm-dev,
${misc:Depends}
Breaks: libwraster3-dev
Replaces: libwraster3-dev
Description: Static libraries and headers of Window Maker rasterizer
This library is used to manipulate images and convert them to
a format that can be displayed through the X window system.
Read the wraster.h header for an idea of what is available
.
Contains libwraster and header files, for manipulating and
rasterizing images.
Package: libwraster6
Architecture: any
Multi-Arch: same
Section: libs
Depends: ${misc:Depends}, ${shlibs:Depends}
Description: Shared libraries of Window Maker rasterizer
This library is used to manipulate images and convert them to
a format that can be displayed through the X window system.
Read the wraster.h header for an idea of what is available
Package: libwings-dev
Architecture: any
Multi-Arch: same
Section: libdevel
Depends: libc6-dev,
libfontconfig1-dev,
libwings3 (= ${binary:Version}),
libwraster-dev,
libwutil5 (= ${binary:Version}),
libx11-dev,
libxext-dev,
libxft-dev,
${misc:Depends}
Description: Window Maker's own widget set
WINGs Is Not GNUstep (WINGs) is a small widget set with the NeXTSTEP
look and feel. Its API is inspired in OpenSTEP and its
implementation borrows some ideas from Tk. It has a reasonable set of
widgets, sufficient for building small applications like a CDPlayer
or hacking something like rxvt. It is used for basic widgets in
the WindowMaker window manager.
Package: libwutil5
Architecture: any
Multi-Arch: same
Section: libs
Depends: ${misc:Depends}, ${shlibs:Depends},
wmaker-common (>= ${source:Version})
Description: Window Maker's own widget set - utility library
WINGs Is Not GNUstep (WINGs) is a small widget set with the NeXTSTEP
look and feel. Its API is inspired in OpenSTEP and its
implementation borrows some ideas from Tk. It has a reasonable set of
widgets, sufficient for building small applications like a CDPlayer
or hacking something like rxvt. It is used for basic widgets in
the WindowMaker window manager.
.
This package contains the libWUtils runtime library.
Package: libwings3
Architecture: any
Multi-Arch: same
Section: libs
Depends: ${misc:Depends}, ${shlibs:Depends},
wmaker-common (>= ${source:Version})
Description: Window Maker's own widget set - runtime library
WINGs Is Not GNUstep (WINGs) is a small widget set with the NeXTSTEP
look and feel. Its API is inspired in OpenSTEP and its
implementation borrows some ideas from Tk. It has a reasonable set of
widgets, sufficient for building small applications like a CDPlayer
or hacking something like rxvt. It is used for basic widgets in
the WindowMaker window manager.
.
This package contains the libWINGs runtime library.
Package: libwmaker-dev
Architecture: any
Multi-Arch: same
Section: libdevel
Depends: libwmaker1 (= ${binary:Version}), libx11-dev, ${misc:Depends}
Description: Static libraries and headers for Window Maker applications
Window Maker is a NeXTSTEP-like window manager for X.
.
This package contains libWMaker and header files, for building
Window Maker aware applications.
Package: libwmaker1
Architecture: any
Multi-Arch: same
Section: libs
Depends: ${misc:Depends}, ${shlibs:Depends}
Description: Runtime library for Window Maker applications
Window Maker is a NeXTSTEP-like window manager for X.
.
This package contains the libWMaker runtime library for Window Maker
aware applications.
-211
View File
@@ -1,211 +0,0 @@
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: wmaker
Upstream-Contact: Window Maker developers mailing list <wmaker-dev@googlegroups.com>
Source: http://repo.or.cz/w/wmaker-crm.git
Files: *
Copyright: 1991-1995 Free Software Foundation, Inc.
1995 Spencer Kimball
1995 Peter Mattis
1995 Sun Microsystems, Inc.
1996 Ben Wing
1997 Shige Abe
1997-2004, 2006 Alfredo Kengi Kojima <kojima@windowmaker.info>
1998-2004, 2006 Dan Pascu
1998 scottc
1998 James Thompson
1999-2000 Nwanua Elumeze
2001-2016 Window Maker Team
2008 Norayr Chilingaryan <chnorik@gmail.com>
2008 Guido U. Draheim <guidod@gmx.de>
2010-2011 Carlos R. Mafra <crmafra@gmail.com>
2010 Tamas Tevesz <ice@extreme.hu>
2011 Camille d'Alméras <camilledalmeras@yahoo.com>
2012-2015 Christophe Curis
2012 Daniel Déchelotte
2012 Leandro Vital <leandro.vital@yahoo.com.br>
License: GPL-2+
Files: m4/ax_pthread.m4
Copyright: 2008 Steven G. Johnson <stevenj@alum.mit.edu>
2011 Daniel Richard G. <skunk@iSKUNK.ORG>
License: GPL-3+
Files: m4/ld-version-script.m4
Copyright: 2008-2015 Free Software Foundation, Inc.
License: FSFULLR
Files: util/common.h wmlib/* wrlib/*
Copyright: 1997-2003 Alfredo Kengi Kojima <kojima@windowmaker.info>
1998-2004 Dan Pascu
2011 Carlos R. Mafra <crmafra@gmail.com>
License: LGPL-2+
Files: WindowMaker/Icons/BitchX.tiff WindowMaker/Icons/defaultAppIcon.tiff
WindowMaker/Icons/GNUterm.tiff WindowMaker/Icons/defaultterm.tiff
WindowMaker/Icons/draw.tiff WindowMaker/Icons/linuxterm.tiff
WindowMaker/Icons/mixer.tiff WindowMaker/Icons/notepad.tiff
WindowMaker/Icons/pdf.tiff WindowMaker/Icons/ps.tiff
WindowMaker/Icons/real.tiff WindowMaker/Icons/sgiterm.tiff
WindowMaker/Icons/staroffice2.tiff WindowMaker/Icons/timer.tiff
WindowMaker/Icons/wilber.tiff WindowMaker/Icons/write.tiff
WindowMaker/Icons/xdvi.tiff WindowMaker/Icons/xv.tiff
Copyright: 1997, Marco van Hylckama Vlieg <marco@windowmaker.info>
License: attribution
They may be distributed freely and/or modified as long as the original
Author is mentioned!
Files: WindowMaker/Icons/GNUstepGlow.tiff WindowMaker/Icons/GNUstepGlow.xpm
WindowMaker/Icons/Magnify.tiff WindowMaker/Icons/Magnify.xpm
WindowMaker/Icons/Terminal.tiff WindowMaker/Icons/Terminal.xpm
WindowMaker/Icons/TerminalGNUstep.tiff WindowMaker/Icons/TerminalGNUstep.xpm
WindowMaker/Icons/TerminalLinux.tiff WindowMaker/Icons/TerminalLinux.xpm
WindowMaker/Icons/Ear.png WindowMaker/Icons/Ftp.png WindowMaker/Icons/ICQ.png
WindowMaker/Icons/Jabber.png WindowMaker/Icons/Mozilla.png
WindowMaker/Icons/Pen.png WindowMaker/Icons/Pencil.png
WindowMaker/Icons/Shell.png WindowMaker/Icons/Speaker.png
WindowMaker/Icons/XChat.png
WPrefs.app/tiff/msty1.tiff WPrefs.app/tiff/msty2.tiff WPrefs.app/tiff/msty3.tiff
WPrefs.app/xpm/msty1.xpm WPrefs.app/xpm/msty2.xpm WPrefs.app/xpm/msty3.xpm
WPrefs.app/WPrefs.tiff WPrefs.app/WPrefs.xpm WPrefs.app/tiff/tdel.tiff
WPrefs.app/tiff/tedit.tiff WPrefs.app/tiff/textr.tiff WPrefs.app/tiff/tnew.tiff
WPrefs.app/xpm/tdel.xpm WPrefs.app/xpm/tedit.xpm WPrefs.app/xpm/textr.xpm
WPrefs.app/xpm/tnew.xpm WINGs/Resources/defaultIcon.tiff
WINGs/Resources/Images.tiff WINGs/Resources/Images.xpm
WINGs/Resources/defaultIcon.xpm WINGs/Resources/Images.xcf
Copyright: 2000, Banlu Kemiyatorn
License: WTFPL-1
Files: debian/*
Copyright: 1997, Neil A. Rubin <nar5@po.cwru.edu>
1997, Marcelo E. Magallon <mmagallo@debian.org>
2011, Rodolfo García Peñas (kix) <kix@kix.es>
License: GPL-2+
Files: debian/debianfiles/Themes/DebianLegacy.style
debian/debianfiles/Themes/DebianLegacy.txt
debian/debianfiles/Themes/DebianSwirl.jpg
Copyright: 1999 Gary Burke <gfburke@earthlink.net>
License: GPL-1+
Files: WINGs/string.c
Copyright: 1998 Todd C. Miller <Todd.Miller@courtesan.com>
License: Expat
Files: wrlib/load_ppm.c
Copyright: 1988 Jef Poskanzer
1997-2003 Alfredo K. Kojima
2014 Window Maker Team
License: HPND and LGPL-2+
License: Expat
Permission to use, copy, modify, and distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
License: FSFULLR
This file is free software; the Free Software Foundation gives unlimited
permission to copy and/or distribute it, with or without modifications, as
long as this notice is preserved.
License: GPL-1+
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 1, or (at your option)
any later version.
.
On Debian systems, the complete text of version 1 of the GNU General
Public License can be found in `/usr/share/common-licenses/GPL-1'.
License: GPL-2+
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 package; if not, write to the Free
Software Foundation, Inc., 51 Franklin St, Fifth Floor,
Boston, MA 02110-1301 USA
.
On Debian systems, the full text of the GNU General Public
License version 2 can be found in the file
`/usr/share/common-licenses/GPL-2'.
License: GPL-3+
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 3 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, see
<http://www.gnu.org/licenses/>.
.
On Debian systems, the full text of the GNU General Public
License version 3 can be found in the file
`/usr/share/common-licenses/GPL-3'.
License: HPND
Permission to use, copy, modify, and distribute this software and its
documentation for any purpose and without fee is hereby granted, provided
that the above copyright notice appear in all copies and that both that
copyright notice and this permission notice appear in supporting
documentation. This software is provided "as is" without express or
implied warranty.
License: LGPL-2+
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
.
You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301 USA
.
On Debian systems, the full text of the GNU Library General Public
License version 2 can be found in the file
`/usr/share/common-licenses/LGPL-2'.
License: WTFPL-1
do What The Fuck you want to Public License
.
Version 1.0, March 2000
Copyright (C) 2000 Banlu Kemiyatorn (]d).
136 Nives 7 Jangwattana 14 Laksi Bangkok
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
.
Ok, the purpose of this license is simple
and you just
.
DO WHAT THE FUCK YOU WANT TO.
-25
View File
@@ -1,25 +0,0 @@
{
TitleJustify = left;
WindowTitleFont = "-*-helvetica-bold-r-normal-*-12-*-*-*-*-*-*-*";
MenuTitleFont = "-*-helvetica-bold-r-normal-*-12-*-*-*-*-*-*-*";
MenuTextFont = "-*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-*";
IconTitleFont = "-*-helvetica-medium-r-normal-*-8-*-*-*-*-*-*-*";
ClipTitleFont = "-*-helvetica-bold-r-normal-*-10-*-*-*-*-*-*-*";
HighlightColor = white;
HighlightTextColor = black;
ClipTitleColor = black;
CClipTitleColor = "rgb:61/61/61";
FTitleColor = white;
PTitleColor = white;
UTitleColor = black;
FTitleBack = (hgradient, "rgb:50/5a/5e", "rgb:20/2a/2e");
PTitleBack = (hgradient, "rgb:51/50/55", "rgb:80/80/80");
UTitleBack = (hgradient, "rgb:c2/c0/c5", "rgb:82/80/85");
MenuTitleColor = white;
MenuTextColor = black;
MenuDisabledColor = gray40;
MenuTitleBack = (hgradient, "rgb:50/5a/5e", "rgb:20/2a/2e");
MenuTextBack = (hgradient, "rgb:c2/c0/c5", "rgb:82/80/85");
WorkspaceBack = (spixmap, debian.tiff, "rgb:8c/81/65");
IconBack = (dgradient, "rgb:a6/a6/b6", "rgb:51/55/61");
}
-28
View File
@@ -1,28 +0,0 @@
{
TitleJustify = left;
WindowTitleFont = "-*-helvetica-bold-r-normal-*-12-*-*-*-*-*-*-*";
MenuTitleFont = "-*-helvetica-bold-r-normal-*-12-*-*-*-*-*-*-*";
MenuTextFont = "-*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-*";
IconTitleFont = "-*-helvetica-medium-r-normal-*-8-*-*-*-*-*-*-*";
ClipTitleFont = "-*-helvetica-bold-r-normal-*-10-*-*-*-*-*-*-*";
DisplayFont = "-*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-*";
HighlightColor = white;
HighlightTextColor = black;
ClipTitleColor = black;
CClipTitleColor = "rgb:93/0d/29";
FTitleColor = white;
PTitleColor = white;
UTitleColor = black;
FTitleBack = (dgradient, "rgb:62/08/19", "rgb:85/0b/22");
PTitleBack = (dgradient, "rgb:51/50/55", "rgb:80/80/80");
UTitleBack = (dgradient, "rgb:8c/81/6d", "rgb:c6/b9/ae");
MenuTitleColor = white;
MenuTextColor = black;
MenuDisabledColor = gray40;
MenuTitleBack = (hgradient, "rgb:93/0d/29", "rgb:85/0b/22");
MenuTextBack = (hgradient, "rgb:c6/b9/ae", "rgb:ff/ff/ff");
WorkspaceBack = (spixmap,
"/usr/share/WindowMaker/Backgrounds/DebianSwirl.jpg",
"rgb:8c/81/65");
IconBack = (dgradient, "rgb:8c/81/6d", "rgb:c6/b9/ae");
}
-20
View File
@@ -1,20 +0,0 @@
Begin3
Title: Debian
Version: 1.0
Entered-date: June 5, 1999
Description: Debian swirl theme for WindowMaker
This theme was inspired by the new Debian logo.
The background art is derived from copyright-free
stock artwork. GIMP was used for the imaging.
Keywords: Wmaker, theme, debian, swirl
Author: gfburke@earthlink.net (Gary Burke)
Maintained-by: gfburke@earthlink.net (Gary Burke)
Primary-site: wm.themes.org
Debian.tar.gz
186123 Backgrounds/Debian
1117 Themes/Debian
Platforms: WindowMaker, XFree86 window manager
Copying-policy: GPL
End
Binary file not shown.

Before

Width:  |  Height:  |  Size: 182 KiB

Binary file not shown.
-1
View File
@@ -1 +0,0 @@
"menu.hook"
-56
View File
@@ -1,56 +0,0 @@
{
Logo.WMDock = {Icon = GNUstep.tiff;};
Logo.WMPanel = {Icon = GNUstep.tiff;};
Tile.WMClip = {Icon = clip.tiff;};
WPrefs = {Icon = "/usr/share/lib/GNUstep/System/Applications/WPrefs.app/WPrefs.tiff";};
Dockit = {Icon = GNUstep.tiff;};
WMSoundServer = {Icon = Sound.tiff;};
"*" = {Icon = defaultAppIcon.tiff;};
Rxvt = {Icon = GNUterm.tiff;};
KTerm = {Icon = GNUterm.tiff;};
NXTerm = {Icon = GNUterm.tiff;};
XTerm = {Icon = GNUterm.tiff;};
Netscape = {Icon = "wmaker-netscape.tif";};
"Mozilla-bin" = {Icon = "wmaker-nav.tif";};
emacs = {Icon = "wmaker-emacs.tif";};
Gimp = {AlwaysUserIcon = Yes;Icon = "wmaker-gimp2.tif";};
toolbox.Gimp = {NoAppIcon = Yes;Icon = "wmaker-gimp2.tif";};
gimp_startup.Gimp = {
Icon = "wmaker-gimp2.tif";
AlwaysUserIcon = Yes;
NoTitlebar = Yes;
NoResizebar = Yes;
NotClosable = Yes;
NotMiniaturizable = Yes;
};
tip_of_the_day.Gimp = {
Icon = "wmaker-gimp2.tif";
AlwaysUserIcon = Yes;
NoResizebar = Yes;
NoCloseButton = Yes;
NoMiniaturizeButton = Yes;
KeepOnTop = Yes;
};
image_window.Gimp = {Icon = "wmaker-gimp-work.tif";AlwaysUserIcon = Yes;};
brushselection.Gimp = {Icon = "wmaker-gimp-brushes.tif";AlwaysUserIcon = Yes;};
patternselection.Gimp = {Icon = "wmaker-gimp-patterns.tif";AlwaysUserIcon = Yes;};
color_palette.Gimp = {
Icon = "wmaker-gimp-palette.tif";
AlwaysUserIcon = Yes;
NoResizebar = Yes;
};
gradient_editor.Gimp = {Icon = "wmaker-gimp-gradient.tif";AlwaysUserIcon = Yes;};
tool_options.Gimp = {Icon = "wmaker-gimp-tooloption.tif";AlwaysUserIcon = Yes;};
layers_and_channels.Gimp = {Icon = "wmaker-gimp-layers.tif";AlwaysUserIcon = Yes;};
indexed_color_palette.Gimp = {
Icon = "wmaker-gimp-palette.tif";
AlwaysUserIcon = Yes;
NoResizebar = Yes;
};
"Script-fu" = {Icon = "wmaker-gimp-script-fu.tif";};
"script-fu.Script-fu" = {Icon = "wmaker-gimp-script-fu.tif";};
preferences.Gimp = {Icon = "wmaker-gimp-prefs.tif";AlwaysUserIcon = Yes;};
panel = {NoAppIcon = Yes;};
gmc = {NoAppIcon = Yes;Omnipresent = Yes;SkipWindowList = Yes;};
Logo.WMClip = {Icon = clip.tiff;};
}
-141
View File
@@ -1,141 +0,0 @@
{
LargeDisplayFont = "-*-helvetica-bold-r-normal-*-24-*-*-*-*-*-*-*";
MultiByteText = AUTO;
KbdModeLock = NO;
SmoothWorkspaceBack = NO;
WindozeCycling = NO;
PopupSwitchMenu = NO;
DisableMiniwindows = NO;
OpenTransientOnOwnerWorkspace = NO;
EdgeResistance = 30;
IconificationStyle = Zoom;
IconPath = (
"~/GNUstep/Library/Icons",
"~/GNUstep/Library/WindowMaker/Pixmaps",
"~/GNUstep/Library/WindowMaker/CachedPixmaps",
"/usr/share/WindowMaker/Icons",
"/usr/share/WindowMaker/Pixmaps",
"/usr/share/icons",
"/usr/local/share/WindowMaker/Icons",
"/usr/local/share/WindowMaker/Pixmaps",
"/usr/local/share/icons"
);
PixmapPath = (
"~/GNUstep/Library/WindowMaker/Pixmaps",
"~/GNUstep/Library/WindowMaker/Backgrounds",
"~/GNUstep/Library/WindowMaker/CachedPixmaps",
"/usr/share/WindowMaker/Backgrounds",
"/usr/share/WindowMaker/Pixmaps",
"/usr/share/pixmaps",
"/usr/local/share/WindowMaker/Pixmaps",
"/usr/local/share/WindowMaker/Backgrounds",
"/usr/local/share/pixmaps"
);
WindowTitleBalloons = YES;
IconSize = 64;
FocusMode = manual;
DisableWSMouseActions = NO;
MouseLeftButtonAction = SelectWindows;
MouseMiddleButtonAction = OpenWindowListMenu;
MouseRightButtonAction = OpenApplicationsMenu;
MouseWheelAction = None;
ColormapSize = 4;
DisableDithering = NO;
ModifierKey = Mod1;
NewStyle = "new";
DisableDock = NO;
DisableClip = NO;
Superfluous = NO;
StickyIcons = NO;
SaveSessionOnExit = NO;
ColormapMode = auto;
RaiseDelay = 0;
AutoFocus = YES;
WindowPlacement = auto;
WindowPlaceOrigin = (64, 64);
UseSaveUnders = NO;
DisableSound = NO;
DisableAnimations = NO;
DontLinkWorkspaces = YES;
AutoArrangeIcons = NO;
AdvanceToNewWorkspace = NO;
CycleWorkspaces = NO;
ResizeDisplay = line;
MoveDisplay = floating;
OpaqueMove = YES;
IconPosition = "blh";
WrapMenus = NO;
ScrollableMenus = YES;
MenuScrollSpeed = fast;
IconSlideSpeed = fast;
ShadeSpeed = fast;
DoubleClickTime = 250;
AlignSubmenus = NO;
NoWindowOverIcons = NO;
IgnoreFocusClick = NO;
CloseKey = None;
MaximizeKey = None;
VMaximizeKey = None;
RaiseLowerKey = None;
DontConfirmKill = NO;
ShadeKey = None;
NextWorkspaceKey = "Mod1+Control+Right";
PrevWorkspaceKey = "Mod1+Control+Left";
RootMenuKey = F12;
WindowListKey = F11;
WindowMenuKey = "Control+Escape";
RaiseKey = "Mod1+Up";
LowerKey = "Mod1+Down";
FocusNextKey = "Mod1+Tab";
FocusPrevKey = "Mod1+Shift+Tab";
Workspace1Key = "Mod1+1";
Workspace2Key = "Mod1+2";
Workspace3Key = "Mod1+3";
Workspace4Key = "Mod1+4";
Workspace5Key = "Mod1+5";
Workspace6Key = "Mod1+6";
Workspace7Key = "Mod1+7";
Workspace8Key = "Mod1+8";
Workspace9Key = "Mod1+9";
Workspace10Key = "Mod1+0";
HideKey = "Mod1+H";
SelectKey = None;
MiniaturizeKey = "Mod1+M";
NextWorkspaceLayerKey = None;
PrevWorkspaceLayerKey = None;
ClipLowerKey = None;
ClipRaiseKey = None;
ConstrainWindowSize = NO;
ClipRaiseLowerKey = None;
TitleJustify = center;
WindowTitleFont = "-*-helvetica-bold-r-normal-*-12-*-*-*-*-*-*-*";
MenuTitleFont = "-*-helvetica-bold-r-normal-*-12-*-*-*-*-*-*-*";
MenuTextFont = "-*-helvetica-bold-r-normal-*-12-*-*-*-*-*-*-*";
IconTitleFont = "-*-helvetica-bold-r-normal-*-9-*-*-*-*-*-*-*";
ClipTitleFont = "Verdana:bold:pixelsize=10";
HighlightColor = white;
HighlightTextColor = black;
ClipTitleColor = black;
CClipTitleColor = gray20;
FTitleColor = white;
PTitleColor = white;
UTitleColor = black;
FTitleBack = (solid, black);
PTitleBack = (solid, gray40);
UTitleBack = (solid, "rgb:aa/aa/aa");
MenuTitleColor = white;
MenuTextColor = black;
MenuDisabledColor = gray40;
MenuTitleBack = (solid, black);
MenuTextBack = (solid, "rgb:aa/aa/aa");
WorkspaceBack = (
spixmap,
"/usr/share/WindowMaker/Backgrounds/debian.tiff",
gray20
);
IconBack = (dgradient, "rgb:a6/a6/b6", "rgb:51/55/61");
IconTitleColor = white;
IconTitleBack = black;
ResizebarBack = (solid, "rgb:aa/aa/aa");
MenuStyle = normal;
}
-29
View File
@@ -1,29 +0,0 @@
(
Debian,
(
Applications,
OPEN_PLMENU,
"|| wmmenugen -parser:xdg /usr/share/applications/"
),
(Run..., EXEC, "%A(Run,Type command to run)"),
(
"Window Maker",
("Info Panel ...", INFO_PANEL),
("Legal Panel ...", LEGAL_PANEL),
(Preferences, EXEC, WPrefs),
("Refresh screen", REFRESH),
(Restart, RESTART)
),
(
WorkSpace,
(Appearance, OPEN_MENU, appearance.menu),
("Arrange Icons", ARRANGE_ICONS),
("Clear Session", CLEAR_SESSION),
("Hide Others", HIDE_OTHERS),
("Save Session", SAVE_SESSION),
("Show All", SHOW_ALL),
(Workspaces, WORKSPACE_MENU)
),
(Exit, EXIT),
("Exit session", SHUTDOWN)
)
-76
View File
@@ -1,76 +0,0 @@
#!/bin/sh
set -e
[ -n "$WMAKER_USER_ROOT" ] || export WMAKER_USER_ROOT="$HOME/GNUstep"
gs_base="$WMAKER_USER_ROOT"
gs_defaults="$gs_base/Defaults"
gs_system_defaults=/etc/GNUstep/Defaults
wm_base="$gs_base/Library/WindowMaker"
wm_backgrounds="$wm_base/Backgrounds"
wm_iconsets="$wm_base/IconSets"
wm_pixmaps="$wm_base/Pixmaps"
gs_icons="$gs_base/Library/Icons"
wm_style="$wm_base/Style"
wm_styles="$wm_base/Styles"
wm_themes="$wm_base/Themes"
WindowMaker=/usr/lib/WindowMaker/wmaker
convertfonts=/usr/lib/WindowMaker/convertfonts
make_dir_if_needed ()
{
if [ ! -d "$1" ] ; then
install -m 0755 -d "$1"
fi
}
rename_dir_if_possible ()
{
if [ ! -d "$2" ] ; then
if [ -d "$1" ] ; then
mv "$1" "$2"
fi
fi
}
copy_defaults_if_needed ()
{
file="$gs_defaults/$1"
system_file="$gs_system_defaults/$1"
if [ ! -f "$file" ] ; then
install -m 0644 "$system_file" "$file"
fi
}
make_dir_if_needed "$gs_defaults"
make_dir_if_needed "$wm_base"
make_dir_if_needed "$wm_backgrounds"
make_dir_if_needed "$wm_iconsets"
make_dir_if_needed "$wm_pixmaps"
make_dir_if_needed "$gs_icons"
rename_dir_if_possible "$wm_style" "$wm_styles"
make_dir_if_needed "$wm_styles"
make_dir_if_needed "$wm_themes"
copy_defaults_if_needed WindowMaker
copy_defaults_if_needed WMRootMenu
copy_defaults_if_needed WMState
#copy_defaults_if_needed WMWindowAttributes
if [ -x $convertfonts -a ! -e "$wm_base/.fonts_converted" ] ; then
# --keep-xlfd is used in order to preserve the original information
$convertfonts --keep-xlfd "$gs_defaults/WindowMaker"
if [ -f "$gs_defaults/WMGLOBAL" ] ; then
$convertfonts --keep-xlfd "$gs_defaults/WMGLOBAL"
fi
find "$wm_styles" -mindepth 1 -maxdepth 1 -type f -print0 |
xargs -0 -r -n 1 $convertfonts --keep-xlfd
touch "$wm_base/.fonts_converted"
fi
if [ -n "$1" -a -x "$WindowMaker$1" ] ; then
WindowMaker="$WindowMaker$1"
shift
fi
exec "$WindowMaker" "$@"
-8
View File
@@ -1,8 +0,0 @@
[Desktop Entry]
Name=Window Maker
Comment=This session logs you into Window Maker
Exec=/usr/bin/wmaker
# no icon yet, only the top three are currently used
Icon=
Keywords=Window Manager
Type=Application
-1
View File
@@ -1 +0,0 @@
WINGs/README
-2
View File
@@ -1,2 +0,0 @@
WINGs/Examples/*.c
WINGs/Examples/README
-9
View File
@@ -1,9 +0,0 @@
usr/include/WINGs/WINGs.h
usr/include/WINGs/WINGsP.h
usr/include/WINGs/WUtil.h
usr/lib/*/libWINGs.a
usr/lib/*/libWINGs.so
usr/lib/*/libWUtil.a
usr/lib/*/libWUtil.so
usr/lib/*/pkgconfig/WINGs.pc
usr/lib/*/pkgconfig/WUtil.pc
-1
View File
@@ -1 +0,0 @@
usr/lib/*/libWINGs.so.*
-600
View File
@@ -1,600 +0,0 @@
libWINGs.so.3 libwings3 #MINVER#
WINGsConfiguration@Base 0.95.0
WMAddBoxSubview@Base 0.95.0
WMAddBoxSubviewAtEnd@Base 0.95.0
WMAddBrowserColumn@Base 0.95.0
WMAddItemInTabView@Base 0.95.0
WMAddPopUpButtonItem@Base 0.95.0
WMAddSplitViewSubview@Base 0.95.0
WMAddTabViewItemWithView@Base 0.95.0
WMAdjustSplitViewSubviews@Base 0.95.0
WMAppendTextBlock@Base 0.95.0
WMAppendTextStream@Base 0.95.0
WMBlackColor@Base 0.95.0
WMBlueComponentOfColor@Base 0.95.0
WMBoldSystemFontOfSize@Base 0.95.0
WMBreakModalLoop@Base 0.95.0
WMBrowserAllowsEmptySelection@Base 0.95.0
WMBrowserAllowsMultipleSelection@Base 0.95.0
WMChangePanelOwner@Base 0.95.0
WMClearList@Base 0.95.0
WMCloseColorPanel@Base 0.95.0
WMCloseWindow@Base 0.95.0
WMColorGC@Base 0.95.0
WMColorPanelColorChangedNotification@Base 0.95.0
WMColorPixel@Base 0.95.0
WMColorWellDidChangeNotification@Base 0.95.0
WMCopyFontWithStyle@Base 0.95.0
WMCreateAlertPanel@Base 0.95.0
WMCreateApplicationIconBlendedPixmap@Base 0.95.0
WMCreateBlendedPixmapFromFile@Base 0.95.0
WMCreateBlendedPixmapFromRImage@Base 0.95.0
WMCreateBox@Base 0.95.0
WMCreateBrowser@Base 0.95.0
WMCreateButton@Base 0.95.0
WMCreateColorWell@Base 0.95.0
WMCreateCustomButton@Base 0.95.0
WMCreateDragHandler@Base 0.95.0
WMCreateDragOperationArray@Base 0.95.0
WMCreateDragOperationItem@Base 0.95.0
WMCreateEventHandler@Base 0.95.0
WMCreateFont@Base 0.95.0
WMCreateFrame@Base 0.95.0
WMCreateGenericPanel@Base 0.95.0
WMCreateInputPanel@Base 0.95.0
WMCreateLabel@Base 0.95.0
WMCreateList@Base 0.95.0
WMCreateMenuItem@Base 0.95.0
WMCreateNamedColor@Base 0.95.0
WMCreatePanelForWindow@Base 0.95.0
WMCreatePanelWithStyleForWindow@Base 0.95.0
WMCreatePixmap@Base 0.95.0
WMCreatePixmapFromFile@Base 0.95.0
WMCreatePixmapFromRImage@Base 0.95.0
WMCreatePixmapFromXPMData@Base 0.95.0
WMCreatePixmapFromXPixmaps@Base 0.95.0
WMCreatePopUpButton@Base 0.95.0
WMCreateProgressIndicator@Base 0.95.0
WMCreateRGBAColor@Base 0.95.0
WMCreateRGBColor@Base 0.95.0
WMCreateRuler@Base 0.95.0
WMCreateScaledBlendedPixmapFromFile@Base 0.95.6
WMCreateScreen@Base 0.95.0
WMCreateScreenWithRContext@Base 0.95.0
WMCreateScrollView@Base 0.95.0
WMCreateScroller@Base 0.95.0
WMCreateSelectionHandler@Base 0.95.0
WMCreateSimpleApplicationScreen@Base 0.95.0
WMCreateSlider@Base 0.95.0
WMCreateSplitView@Base 0.95.0
WMCreateTabView@Base 0.95.0
WMCreateTabViewItem@Base 0.95.0
WMCreateTabViewItemWithIdentifier@Base 0.95.0
WMCreateTextBlockWithObject@Base 0.95.0
WMCreateTextBlockWithPixmap@Base 0.95.0
WMCreateTextBlockWithText@Base 0.95.0
WMCreateTextField@Base 0.95.0
WMCreateTextForDocumentType@Base 0.95.0
WMCreateWindow@Base 0.95.0
WMCreateWindowWithStyle@Base 0.95.0
WMDarkGrayColor@Base 0.95.0
WMDefaultBoldSystemFont@Base 0.95.0
WMDefaultSystemFont@Base 0.95.0
WMDeleteDragHandler@Base 0.95.0
WMDeleteEventHandler@Base 0.95.0
WMDeleteSelectionHandler@Base 0.95.0
WMDeleteTextFieldRange@Base 0.95.0
WMDestroyAlertPanel@Base 0.95.0
WMDestroyGenericPanel@Base 0.95.0
WMDestroyInputPanel@Base 0.95.0
WMDestroyMenuItem@Base 0.95.0
WMDestroyTabViewItem@Base 0.95.0
WMDestroyTextBlock@Base 0.95.0
WMDestroyWidget@Base 0.95.0
WMDragImageFromView@Base 0.95.0
WMDrawImageString@Base 0.95.0
WMDrawPixmap@Base 0.95.0
WMDrawString@Base 0.95.0
WMFindInTextStream@Base 0.95.0
WMFindRowOfListItemWithTitle@Base 0.95.0
WMFontHeight@Base 0.95.0
WMFontPanelFontChangedNotification@Base 0.95.0
WMFreeColorPanel@Base 0.95.0
WMFreeFilePanel@Base 0.95.0
WMFreeFontPanel@Base 0.95.0
WMFreezeText@Base 0.95.0
WMGetApplicationIconImage@Base 0.95.0
WMGetApplicationIconPixmap@Base 0.95.0
WMGetBrowserFirstVisibleColumn@Base 0.95.0
WMGetBrowserListInColumn@Base 0.95.0
WMGetBrowserMaxVisibleColumns@Base 0.95.0
WMGetBrowserNumberOfColumns@Base 0.95.0
WMGetBrowserPath@Base 0.95.0
WMGetBrowserPathToColumn@Base 0.95.0
WMGetBrowserPaths@Base 0.95.0
WMGetBrowserSelectedColumn@Base 0.95.0
WMGetBrowserSelectedItemInColumn@Base 0.95.0
WMGetBrowserSelectedRowInColumn@Base 0.95.0
WMGetButtonEnabled@Base 0.95.0
WMGetButtonSelected@Base 0.95.0
WMGetButtonText@Base 0.95.7
WMGetColorAlpha@Base 0.95.0
WMGetColorPanel@Base 0.95.0
WMGetColorPanelColor@Base 0.95.0
WMGetColorRGBDescription@Base 0.95.0
WMGetColorWellColor@Base 0.95.0
WMGetDragOperationItemText@Base 0.95.0
WMGetDragOperationItemType@Base 0.95.0
WMGetFilePanelAccessoryView@Base 0.95.0
WMGetFilePanelFileName@Base 0.95.0
WMGetFontName@Base 0.95.0
WMGetFontPanel@Base 0.95.0
WMGetFontPanelFont@Base 0.95.0
WMGetGrabbedRulerMargin@Base 0.95.0
WMGetHangedData@Base 0.95.0
WMGetLabelFont@Base 0.95.0
WMGetLabelImage@Base 0.95.0
WMGetLabelText@Base 0.95.0
WMGetListItem@Base 0.95.0
WMGetListItemHeight@Base 0.95.0
WMGetListItems@Base 0.95.0
WMGetListNumberOfRows@Base 0.95.0
WMGetListPosition@Base 0.95.0
WMGetListSelectedItem@Base 0.95.0
WMGetListSelectedItemRow@Base 0.95.0
WMGetListSelectedItems@Base 0.95.0
WMGetMenuItemAction@Base 0.95.0
WMGetMenuItemData@Base 0.95.0
WMGetMenuItemEnabled@Base 0.95.0
WMGetMenuItemMixedStatePixmap@Base 0.95.0
WMGetMenuItemOffStatePixmap@Base 0.95.0
WMGetMenuItemOnStatePixmap@Base 0.95.0
WMGetMenuItemPixmap@Base 0.95.0
WMGetMenuItemRepresentedObject@Base 0.95.0
WMGetMenuItemShortcut@Base 0.95.0
WMGetMenuItemShortcutModifierMask@Base 0.95.0
WMGetMenuItemState@Base 0.95.0
WMGetMenuItemTitle@Base 0.95.0
WMGetOpenPanel@Base 0.95.0
WMGetPixmapMaskXID@Base 0.95.0
WMGetPixmapSize@Base 0.95.0
WMGetPixmapXID@Base 0.95.0
WMGetPopUpButtonEnabled@Base 0.95.0
WMGetPopUpButtonItem@Base 0.95.0
WMGetPopUpButtonItemEnabled@Base 0.95.0
WMGetPopUpButtonMenuItem@Base 0.95.0
WMGetPopUpButtonNumberOfItems@Base 0.95.0
WMGetPopUpButtonSelectedItem@Base 0.95.0
WMGetProgressIndicatorMaxValue@Base 0.95.0
WMGetProgressIndicatorMinValue@Base 0.95.0
WMGetProgressIndicatorValue@Base 0.95.0
WMGetRColorFromColor@Base 0.95.0
WMGetReleasedRulerMargin@Base 0.95.0
WMGetRulerMargins@Base 0.95.0
WMGetRulerOffset@Base 0.95.0
WMGetSavePanel@Base 0.95.0
WMGetScrollViewHorizontalScroller@Base 0.95.0
WMGetScrollViewVerticalScroller@Base 0.95.0
WMGetScrollViewVisibleRect@Base 0.95.0
WMGetScrollerHitPart@Base 0.95.0
WMGetScrollerKnobProportion@Base 0.95.0
WMGetScrollerValue@Base 0.95.0
WMGetSelectedTabViewItem@Base 0.95.0
WMGetSeparatorMenuItem@Base 0.95.0
WMGetSliderMaxValue@Base 0.95.0
WMGetSliderMinValue@Base 0.95.0
WMGetSliderValue@Base 0.95.0
WMGetSplitViewDividerThickness@Base 0.95.0
WMGetSplitViewSubviewAt@Base 0.95.0
WMGetSplitViewSubviewsCount@Base 0.95.0
WMGetSplitViewVertical@Base 0.95.0
WMGetSystemPixmap@Base 0.95.0
WMGetTabViewItemIdentifier@Base 0.95.0
WMGetTabViewItemLabel@Base 0.95.0
WMGetTabViewItemView@Base 0.95.0
WMGetTextBlockProperties@Base 0.95.0
WMGetTextDefaultColor@Base 0.95.0
WMGetTextDefaultFont@Base 0.95.0
WMGetTextEditable@Base 0.95.0
WMGetTextFieldCursorPosition@Base 0.95.0
WMGetTextFieldDelegate@Base 0.95.0
WMGetTextFieldEditable@Base 0.95.0
WMGetTextFieldFont@Base 0.95.0
WMGetTextFieldText@Base 0.95.0
WMGetTextIgnoresNewline@Base 0.95.0
WMGetTextInsertType@Base 0.95.0
WMGetTextObjects@Base 0.95.0
WMGetTextRulerShown@Base 0.95.0
WMGetTextSelectedObjects@Base 0.95.0
WMGetTextSelectedStream@Base 0.95.0
WMGetTextSelectionColor@Base 0.95.0
WMGetTextSelectionFont@Base 0.95.0
WMGetTextSelectionUnderlined@Base 0.95.0
WMGetTextStream@Base 0.95.0
WMGetTextUsesMonoFont@Base 0.95.0
WMGetViewPosition@Base 0.95.0
WMGetViewScreenPosition@Base 0.95.0
WMGetViewSize@Base 0.95.0
WMGetWidgetBackgroundColor@Base 0.95.0
WMGetWidgetBackgroundPixmap@Base 0.95.7
WMGrayColor@Base 0.95.0
WMGreenComponentOfColor@Base 0.95.0
WMGroupButtons@Base 0.95.0
WMHandleEvent@Base 0.95.0
WMHangData@Base 0.95.0
WMHideFontPanel@Base 0.95.0
WMHookEventHandler@Base 0.95.0
WMInsertBrowserItem@Base 0.95.0
WMInsertItemInTabView@Base 0.95.0
WMInsertListItem@Base 0.95.0
WMInsertPopUpButtonItem@Base 0.95.0
WMInsertTextFieldText@Base 0.95.0
WMIsAntialiasingEnabled@Base 0.95.0
WMIsDoubleClick@Base 0.95.0
WMIsDraggingFromView@Base 0.95.0
WMIsMarginEqualToMargin@Base 0.95.0
WMListAllowsEmptySelection@Base 0.95.0
WMListAllowsMultipleSelection@Base 0.95.0
WMListDidScrollNotification@Base 0.95.0
WMListSelectionDidChangeNotification@Base 0.95.0
WMLoadBrowserColumnZero@Base 0.95.0
WMLowerWidget@Base 0.95.0
WMMapSubwidgets@Base 0.95.0
WMMapWidget@Base 0.95.0
WMMaskEvent@Base 0.95.0
WMMenuItemIsSeparator@Base 0.95.0
WMMoveWidget@Base 0.95.0
WMNextEvent@Base 0.95.0
WMOpenScreen@Base 0.95.0
WMPageText@Base 0.95.0
WMPaintColorSwatch@Base 0.95.0
WMPerformButtonClick@Base 0.95.0
WMPrependTextBlock@Base 0.95.0
WMPrependTextStream@Base 0.95.0
WMRaiseWidget@Base 0.95.0
WMRealizeWidget@Base 0.95.0
WMRedComponentOfColor@Base 0.95.0
WMRedisplayWidget@Base 0.95.0
WMRegisterViewForDraggedTypes@Base 0.95.0
WMRelayToNextResponder@Base 0.95.0
WMReleaseColor@Base 0.95.0
WMReleaseFont@Base 0.95.0
WMReleasePixmap@Base 0.95.0
WMReleaseViewDragImage@Base 0.95.0
WMRemoveBoxSubview@Base 0.95.0
WMRemoveBrowserItem@Base 0.95.0
WMRemoveListItem@Base 0.95.0
WMRemovePopUpButtonItem@Base 0.95.0
WMRemoveSplitViewSubview@Base 0.95.0
WMRemoveSplitViewSubviewAt@Base 0.95.0
WMRemoveTabViewItem@Base 0.95.0
WMRemoveTextBlock@Base 0.95.0
WMReparentWidget@Base 0.95.0
WMReplaceTextSelection@Base 0.95.0
WMRequestSelection@Base 0.95.0
WMResizeScrollViewContent@Base 0.95.0
WMResizeWidget@Base 0.95.0
WMRetainColor@Base 0.95.0
WMRetainFont@Base 0.95.0
WMRetainPixmap@Base 0.95.0
WMRunAlertPanel@Base 0.95.0
WMRunInputPanel@Base 0.95.0
WMRunModalFilePanelForDirectory@Base 0.95.0
WMRunModalLoop@Base 0.95.0
WMScreenDepth@Base 0.95.0
WMScreenDisplay@Base 0.95.0
WMScreenHeight@Base 0.95.0
WMScreenMainLoop@Base 0.95.0
WMScreenPending@Base 0.95.0
WMScreenRContext@Base 0.95.0
WMScreenWidth@Base 0.95.0
WMScrollText@Base 0.95.0
WMScrollViewScrollPoint@Base 0.95.0
WMScrollerDidScrollNotification@Base 0.95.0
WMSelectAllListItems@Base 0.95.0
WMSelectFirstTabViewItem@Base 0.95.0
WMSelectLastTabViewItem@Base 0.95.0
WMSelectListItem@Base 0.95.0
WMSelectListItemsInRange@Base 0.95.0
WMSelectNextTabViewItem@Base 0.95.0
WMSelectPreviousTabViewItem@Base 0.95.0
WMSelectTabViewItem@Base 0.95.0
WMSelectTabViewItemAtIndex@Base 0.95.0
WMSelectTextFieldRange@Base 0.95.0
WMSelectionOwnerDidChangeNotification@Base 0.95.0
WMSetApplicationHasAppIcon@Base 0.95.0
WMSetApplicationIconImage@Base 0.95.0
WMSetApplicationIconPixmap@Base 0.95.0
WMSetApplicationIconWindow@Base 0.95.0
WMSetBalloonDelay@Base 0.95.0
WMSetBalloonEnabled@Base 0.95.0
WMSetBalloonFont@Base 0.95.0
WMSetBalloonTextAlignment@Base 0.95.0
WMSetBalloonTextColor@Base 0.95.0
WMSetBalloonTextForView@Base 0.95.0
WMSetBoxBorderWidth@Base 0.95.0
WMSetBoxHorizontal@Base 0.95.0
WMSetBrowserAction@Base 0.95.0
WMSetBrowserAllowEmptySelection@Base 0.95.0
WMSetBrowserAllowMultipleSelection@Base 0.95.0
WMSetBrowserColumnTitle@Base 0.95.0
WMSetBrowserDelegate@Base 0.95.0
WMSetBrowserDoubleAction@Base 0.95.0
WMSetBrowserHasScroller@Base 0.95.0
WMSetBrowserMaxVisibleColumns@Base 0.95.0
WMSetBrowserPath@Base 0.95.0
WMSetBrowserPathSeparator@Base 0.95.0
WMSetBrowserTitled@Base 0.95.0
WMSetButtonAction@Base 0.95.0
WMSetButtonAltImage@Base 0.95.0
WMSetButtonAltText@Base 0.95.0
WMSetButtonAltTextColor@Base 0.95.0
WMSetButtonBordered@Base 0.95.0
WMSetButtonContinuous@Base 0.95.0
WMSetButtonDisabledTextColor@Base 0.95.0
WMSetButtonEnabled@Base 0.95.0
WMSetButtonFont@Base 0.95.0
WMSetButtonImage@Base 0.95.0
WMSetButtonImageDefault@Base 0.95.0
WMSetButtonImageDimsWhenDisabled@Base 0.95.0
WMSetButtonImagePosition@Base 0.95.0
WMSetButtonPeriodicDelay@Base 0.95.0
WMSetButtonSelected@Base 0.95.0
WMSetButtonTag@Base 0.95.0
WMSetButtonText@Base 0.95.0
WMSetButtonTextAlignment@Base 0.95.0
WMSetButtonTextColor@Base 0.95.0
WMSetColorAlpha@Base 0.95.0
WMSetColorInGC@Base 0.95.0
WMSetColorPanelAction@Base 0.95.0
WMSetColorPanelColor@Base 0.95.0
WMSetColorPanelPickerMode@Base 0.95.0
WMSetColorWellColor@Base 0.95.0
WMSetFilePanelAccessoryView@Base 0.95.0
WMSetFilePanelAutoCompletion@Base 0.95.0
WMSetFilePanelCanChooseDirectories@Base 0.95.0
WMSetFilePanelCanChooseFiles@Base 0.95.0
WMSetFilePanelDirectory@Base 0.95.0
WMSetFocusToWidget@Base 0.95.0
WMSetFontPanelAction@Base 0.95.0
WMSetFontPanelFont@Base 0.95.0
WMSetFrameRelief@Base 0.95.0
WMSetFrameTitle@Base 0.95.0
WMSetFrameTitleColor@Base 0.95.6
WMSetFrameTitlePosition@Base 0.95.0
WMSetLabelFont@Base 0.95.0
WMSetLabelImage@Base 0.95.0
WMSetLabelImagePosition@Base 0.95.0
WMSetLabelRelief@Base 0.95.0
WMSetLabelText@Base 0.95.0
WMSetLabelTextAlignment@Base 0.95.0
WMSetLabelTextColor@Base 0.95.0
WMSetLabelWraps@Base 0.95.0
WMSetListAction@Base 0.95.0
WMSetListAllowEmptySelection@Base 0.95.0
WMSetListAllowMultipleSelection@Base 0.95.0
WMSetListBottomPosition@Base 0.95.0
WMSetListDoubleAction@Base 0.95.0
WMSetListPosition@Base 0.95.0
WMSetListSelectionToRange@Base 0.95.0
WMSetListUserDrawItemHeight@Base 0.95.0
WMSetListUserDrawProc@Base 0.95.0
WMSetMenuItemAction@Base 0.95.0
WMSetMenuItemEnabled@Base 0.95.0
WMSetMenuItemMixedStatePixmap@Base 0.95.0
WMSetMenuItemOffStatePixmap@Base 0.95.0
WMSetMenuItemOnStatePixmap@Base 0.95.0
WMSetMenuItemPixmap@Base 0.95.0
WMSetMenuItemRepresentedObject@Base 0.95.0
WMSetMenuItemShortcut@Base 0.95.0
WMSetMenuItemShortcutModifierMask@Base 0.95.0
WMSetMenuItemState@Base 0.95.0
WMSetMenuItemTitle@Base 0.95.0
WMSetPopUpButtonAction@Base 0.95.0
WMSetPopUpButtonEnabled@Base 0.95.0
WMSetPopUpButtonItemEnabled@Base 0.95.0
WMSetPopUpButtonPullsDown@Base 0.95.0
WMSetPopUpButtonSelectedItem@Base 0.95.0
WMSetPopUpButtonText@Base 0.95.0
WMSetProgressIndicatorMaxValue@Base 0.95.0
WMSetProgressIndicatorMinValue@Base 0.95.0
WMSetProgressIndicatorValue@Base 0.95.0
WMSetRulerMargins@Base 0.95.0
WMSetRulerMoveAction@Base 0.95.0
WMSetRulerOffset@Base 0.95.0
WMSetRulerReleaseAction@Base 0.95.0
WMSetScrollViewContentView@Base 0.95.0
WMSetScrollViewHasHorizontalScroller@Base 0.95.0
WMSetScrollViewHasVerticalScroller@Base 0.95.0
WMSetScrollViewLineScroll@Base 0.95.0
WMSetScrollViewPageScroll@Base 0.95.0
WMSetScrollViewRelief@Base 0.95.0
WMSetScrollerAction@Base 0.95.0
WMSetScrollerArrowsPosition@Base 0.95.0
WMSetScrollerParameters@Base 0.95.0
WMSetSliderAction@Base 0.95.0
WMSetSliderContinuous@Base 0.95.0
WMSetSliderImage@Base 0.95.0
WMSetSliderKnobThickness@Base 0.95.0
WMSetSliderMaxValue@Base 0.95.0
WMSetSliderMinValue@Base 0.95.0
WMSetSliderValue@Base 0.95.0
WMSetSplitViewConstrainProc@Base 0.95.0
WMSetSplitViewVertical@Base 0.95.0
WMSetTabViewDelegate@Base 0.95.0
WMSetTabViewEnabled@Base 0.95.0
WMSetTabViewFont@Base 0.95.0
WMSetTabViewItemEnabled@Base 0.95.0
WMSetTabViewItemLabel@Base 0.95.0
WMSetTabViewItemView@Base 0.95.0
WMSetTabViewType@Base 0.95.0
WMSetTextAlignment@Base 0.95.0
WMSetTextBackgroundColor@Base 0.95.0
WMSetTextBackgroundPixmap@Base 0.95.0
WMSetTextBlockProperties@Base 0.95.0
WMSetTextDefaultColor@Base 0.95.0
WMSetTextDefaultFont@Base 0.95.0
WMSetTextDelegate@Base 0.95.0
WMSetTextEditable@Base 0.95.0
WMSetTextFieldAlignment@Base 0.95.0
WMSetTextFieldBeveled@Base 0.95.0
WMSetTextFieldBordered@Base 0.95.0
WMSetTextFieldCursorPosition@Base 0.95.0
WMSetTextFieldDelegate@Base 0.95.0
WMSetTextFieldEditable@Base 0.95.0
WMSetTextFieldFont@Base 0.95.0
WMSetTextFieldNextTextField@Base 0.95.0
WMSetTextFieldPrevTextField@Base 0.95.0
WMSetTextFieldSecure@Base 0.95.0
WMSetTextFieldText@Base 0.95.0
WMSetTextForegroundColor@Base 0.95.0
WMSetTextHasHorizontalScroller@Base 0.95.0
WMSetTextHasRuler@Base 0.95.0
WMSetTextHasVerticalScroller@Base 0.95.0
WMSetTextIgnoresNewline@Base 0.95.0
WMSetTextIndentNewLines@Base 0.95.0
WMSetTextRelief@Base 0.95.0
WMSetTextSelectionColor@Base 0.95.0
WMSetTextSelectionFont@Base 0.95.0
WMSetTextSelectionUnderlined@Base 0.95.0
WMSetTextUsesMonoFont@Base 0.95.0
WMSetViewDragDestinationProcs@Base 0.95.0
WMSetViewDragImage@Base 0.95.0
WMSetViewDragSourceProcs@Base 0.95.0
WMSetViewDraggable@Base 0.95.0
WMSetViewExpandsToParent@Base 0.95.0
WMSetViewNextResponder@Base 0.95.0
WMSetViewNotifySizeChanges@Base 0.95.0
WMSetWidgetBackgroundColor@Base 0.95.0
WMSetWidgetBackgroundPixmap@Base 0.95.7
WMSetWidgetDefaultBoldFont@Base 0.95.0
WMSetWidgetDefaultFont@Base 0.95.0
WMSetWindowAspectRatio@Base 0.95.0
WMSetWindowBaseSize@Base 0.95.0
WMSetWindowCloseAction@Base 0.95.0
WMSetWindowDocumentEdited@Base 0.95.0
WMSetWindowInitialPosition@Base 0.95.0
WMSetWindowLevel@Base 0.95.0
WMSetWindowMaxSize@Base 0.95.0
WMSetWindowMinSize@Base 0.95.0
WMSetWindowMiniwindowImage@Base 0.95.0
WMSetWindowMiniwindowPixmap@Base 0.95.0
WMSetWindowMiniwindowTitle@Base 0.95.0
WMSetWindowResizeIncrements@Base 0.95.0
WMSetWindowTitle@Base 0.95.0
WMSetWindowUserPosition@Base 0.95.0
WMShowColorPanel@Base 0.95.0
WMShowFontPanel@Base 0.95.0
WMShowTextRuler@Base 0.95.0
WMSortBrowserColumn@Base 0.95.0
WMSortBrowserColumnWithComparer@Base 0.95.0
WMSortListItems@Base 0.95.0
WMSortListItemsWithComparer@Base 0.95.0
WMSystemFontOfSize@Base 0.95.0
WMTabViewItemAtPoint@Base 0.95.0
WMTextDidBeginEditingNotification@Base 0.95.0
WMTextDidChangeNotification@Base 0.95.0
WMTextDidEndEditingNotification@Base 0.95.0
WMThawText@Base 0.95.0
WMUnmapSubwidgets@Base 0.95.0
WMUnmapWidget@Base 0.95.0
WMUnregisterViewDraggedTypes@Base 0.95.0
WMUnselectAllListItems@Base 0.95.0
WMUnselectListItem@Base 0.95.0
WMUnsetViewDraggable@Base 0.95.0
WMViewFocusDidChangeNotification@Base 0.95.0
WMViewRealizedNotification@Base 0.95.0
WMViewSizeDidChangeNotification@Base 0.95.0
WMViewXID@Base 0.95.0
WMWhiteColor@Base 0.95.0
WMWidgetHeight@Base 0.95.0
WMWidgetIsMapped@Base 0.95.0
WMWidgetOfView@Base 0.95.0
WMWidgetScreen@Base 0.95.0
WMWidgetWidth@Base 0.95.0
WMWidgetXID@Base 0.95.0
WMWidthOfString@Base 0.95.0
WSetColorWellBordered@Base 0.95.0
W_ActionToOperation@Base 0.95.0
W_BalloonHandleEnterView@Base 0.95.0
W_BalloonHandleLeaveView@Base 0.95.0
W_BroadcastMessage@Base 0.95.0
W_CallDestroyHandlers@Base 0.95.0
W_CreateBalloon@Base 0.95.0
W_CreateIC@Base 0.95.0
W_CreateRootView@Base 0.95.0
W_CreateTopView@Base 0.95.0
W_CreateUnmanagedTopView@Base 0.95.0
W_CreateView@Base 0.95.0
W_DestroyIC@Base 0.95.0
W_DestroyView@Base 0.95.0
W_DispatchMessage@Base 0.95.0
W_DragDestinationCancelDropOnEnter@Base 0.95.0
W_DragDestinationInfoClear@Base 0.95.0
W_DragDestinationStartTimer@Base 0.95.0
W_DragDestinationStateHandler@Base 0.95.0
W_DragDestinationStopTimer@Base 0.95.0
W_DragDestinationStoreEnterMsgInfo@Base 0.95.0
W_DragDestinationStorePositionMsgInfo@Base 0.95.0
W_DragSourceStartTimer@Base 0.95.0
W_DragSourceStateHandler@Base 0.95.0
W_DragSourceStopTimer@Base 0.95.0
W_DrawRelief@Base 0.95.0
W_DrawReliefWithGC@Base 0.95.0
W_FocusIC@Base 0.95.0
W_FocusedViewOfToplevel@Base 0.95.0
W_FreeViewXdndPart@Base 0.95.0
W_GetTextHeight@Base 0.95.0
W_GetViewForXWindow@Base 0.95.0
W_HandleDNDClientMessage@Base 0.95.0
W_HandleSelectionEvent@Base 0.95.0
W_InitApplication@Base 0.95.0
W_InitIM@Base 0.95.0
W_LookupString@Base 0.95.0
W_LowerView@Base 0.95.0
W_MapSubviews@Base 0.95.0
W_MapView@Base 0.95.0
W_MoveView@Base 0.95.0
W_OperationToAction@Base 0.95.0
W_PaintText@Base 0.95.0
W_PaintTextAndImage@Base 0.95.0
W_RaiseView@Base 0.95.0
W_ReadConfigurations@Base 0.95.0
W_RealizeView@Base 0.95.0
W_RedisplayView@Base 0.95.0
W_RegisterUserWidget@Base 0.95.0
W_ReleaseView@Base 0.95.0
W_ReparentView@Base 0.95.0
W_ResizeView@Base 0.95.0
W_RetainView@Base 0.95.0
W_SendDnDClientMessage@Base 0.95.0
W_SetFocusOfTopLevel@Base 0.95.0
W_SetPreeditPositon@Base 0.95.0
W_SetViewBackgroundColor@Base 0.95.0
W_SetViewBackgroundPixmap@Base 0.95.7
W_SetViewCursor@Base 0.95.0
W_TopLevelOfView@Base 0.95.0
W_UnFocusIC@Base 0.95.0
W_UnmapSubviews@Base 0.95.0
W_UnmapView@Base 0.95.0
W_getconf_mouseWheelDown@Base 0.95.5
W_getconf_mouseWheelUp@Base 0.95.5
W_setconf_doubleClickDelay@Base 0.95.5
_BrowserViewDelegate@Base 0.95.0
_ColorWellViewDelegate@Base 0.95.0
_ProgressIndicatorDelegate@Base 0.95.0
_RulerViewDelegate@Base 0.95.0
_ScrollViewViewDelegate@Base 0.95.0
_ScrollerViewDelegate@Base 0.95.0
_SliderViewDelegate@Base 0.95.0
_TextFieldViewDelegate@Base 0.95.0
_TextViewDelegate@Base 0.95.0
_WindowViewDelegate@Base 0.95.0
colorListMenuItem@Base 0.95.0
customPaletteMenuItem@Base 0.95.0
rgbCharToInt@Base 0.95.6
rgbColors@Base 0.95.0
rgbIntToChar@Base 0.95.6
wmkpoint@Base 0.95.0
wmkrect@Base 0.95.0
wmksize@Base 0.95.0
-1
View File
@@ -1 +0,0 @@
test/wtest.c
-4
View File
@@ -1,4 +0,0 @@
usr/include/WMaker.h
usr/lib/*/libWMaker.a
usr/lib/*/libWMaker.so
usr/lib/*/pkgconfig/wmlib.pc
-1
View File
@@ -1 +0,0 @@
usr/lib/*/libWMaker.so.*
-12
View File
@@ -1,12 +0,0 @@
libWMaker.so.1 libwmaker1 #MINVER#
WMAppAddWindow@Base 0.95.7
WMAppCreateWithMain@Base 0.95.7
WMAppSetMainMenu@Base 0.95.7
WMHideApplication@Base 0.95.7
WMHideOthers@Base 0.95.7
WMMenuAddItem@Base 0.95.7
WMMenuAddSubmenu@Base 0.95.7
WMMenuCreate@Base 0.95.7
WMProcessEvent@Base 0.95.7
WMRealizeMenus@Base 0.95.7
WMSetWindowAttributes@Base 0.95.7
-3
View File
@@ -1,3 +0,0 @@
wrlib/NEWS
wrlib/README
wrlib/TODO
-4
View File
@@ -1,4 +0,0 @@
usr/include/wraster.h
usr/lib/*/libwraster.a
usr/lib/*/libwraster.so
usr/lib/*/pkgconfig/wrlib.pc
-1
View File
@@ -1 +0,0 @@
wrlib/README
-1
View File
@@ -1 +0,0 @@
usr/lib/*/libwraster.so.*
-61
View File
@@ -1,61 +0,0 @@
libwraster.so.6 libwraster6 #MINVER#
LIBWRASTER6@LIBWRASTER6 0.95.8
RBevelImage@LIBWRASTER6 0.95.8
RBlurImage@LIBWRASTER6 0.95.8
RClearImage@LIBWRASTER6 0.95.8
RCloneImage@LIBWRASTER6 0.95.8
RCombineAlpha@LIBWRASTER6 0.95.8
RCombineArea@LIBWRASTER6 0.95.8
RCombineAreaWithOpaqueness@LIBWRASTER6 0.95.8
RCombineImageWithColor@LIBWRASTER6 0.95.8
RCombineImages@LIBWRASTER6 0.95.8
RCombineImagesWithOpaqueness@LIBWRASTER6 0.95.8
RConvertImage@LIBWRASTER6 0.95.8
RConvertImageMask@LIBWRASTER6 0.95.8
RCopyArea@LIBWRASTER6 0.95.8
RCreateContext@LIBWRASTER6 0.95.8
RCreateImage@LIBWRASTER6 0.95.8
RCreateImageFromDrawable@LIBWRASTER6 0.95.8
RCreateImageFromXImage@LIBWRASTER6 0.95.8
RCreateXImage@LIBWRASTER6 0.95.8
RDestroyContext@LIBWRASTER6 0.95.8
RDestroyXImage@LIBWRASTER6 0.95.8
RDrawLine@LIBWRASTER6 0.95.8
RDrawLines@LIBWRASTER6 0.95.8
RDrawSegments@LIBWRASTER6 0.95.8
RErrorCode@LIBWRASTER6 0.95.8
RFillImage@LIBWRASTER6 0.95.8
RFlipImage@LIBWRASTER6 0.95.8
RGetClosestXColor@LIBWRASTER6 0.95.8
RGetImageFileFormat@LIBWRASTER6 0.95.8
RGetImageFromXPMData@LIBWRASTER6 0.95.8
RGetPixel@LIBWRASTER6 0.95.8
RGetSubImage@LIBWRASTER6 0.95.8
RGetXImage@LIBWRASTER6 0.95.8
RHSVtoRGB@LIBWRASTER6 0.95.8
RLightImage@LIBWRASTER6 0.95.8
RLoadImage@LIBWRASTER6 0.95.8
RMakeCenteredImage@LIBWRASTER6 0.95.8
RMakeTiledImage@LIBWRASTER6 0.95.8
RMessageForError@LIBWRASTER6 0.95.8
ROperateLine@LIBWRASTER6 0.95.8
ROperateLines@LIBWRASTER6 0.95.8
ROperatePixel@LIBWRASTER6 0.95.8
ROperatePixels@LIBWRASTER6 0.95.8
ROperateRectangle@LIBWRASTER6 0.95.8
ROperateSegments@LIBWRASTER6 0.95.8
RPutPixel@LIBWRASTER6 0.95.8
RPutPixels@LIBWRASTER6 0.95.8
RPutXImage@LIBWRASTER6 0.95.8
RRGBtoHSV@LIBWRASTER6 0.95.8
RReleaseImage@LIBWRASTER6 0.95.8
RRenderGradient@LIBWRASTER6 0.95.8
RRenderInterwovenGradient@LIBWRASTER6 0.95.8
RRenderMultiGradient@LIBWRASTER6 0.95.8
RRetainImage@LIBWRASTER6 0.95.8
RRotateImage@LIBWRASTER6 0.95.8
RSaveImage@LIBWRASTER6 0.95.8
RScaleImage@LIBWRASTER6 0.95.8
RShutdown@LIBWRASTER6 0.95.8
RSmoothScaleImage@LIBWRASTER6 0.95.8
RSupportedFileFormats@LIBWRASTER6 0.95.8
-1
View File
@@ -1 +0,0 @@
usr/lib/*/libWUtil.so.*
-248
View File
@@ -1,248 +0,0 @@
libWUtil.so.5 libwutil5 #MINVER#
WHandleEvents@Base 0.95.5
WMAddIdleHandler@Base 0.95.5
WMAddInputHandler@Base 0.95.5
WMAddNotificationObserver@Base 0.95.5
WMAddPersistentTimerHandler@Base 0.95.5
WMAddTimerHandler@Base 0.95.5
WMAddToArray@Base 0.95.5
WMAddToPLArray@Base 0.95.5
WMAppendArray@Base 0.95.5
WMAppendBag@Base 0.95.5
WMAppendData@Base 0.95.5
WMAppendDataBytes@Base 0.95.5
WMApplication@Base 0.95.5
WMArrayFirst@Base 0.95.5
WMArrayLast@Base 0.95.5
WMArrayNext@Base 0.95.5
WMArrayPrevious@Base 0.95.5
WMBagFirst@Base 0.95.5
WMBagIndexForIterator@Base 0.95.5
WMBagIteratorAtIndex@Base 0.95.5
WMBagLast@Base 0.95.5
WMBagNext@Base 0.95.5
WMBagPrevious@Base 0.95.5
WMCountHashTable@Base 0.95.5
WMCountInArray@Base 0.95.5
WMCountInBag@Base 0.95.5
WMCreateArray@Base 0.95.5
WMCreateArrayWithArray@Base 0.95.5
WMCreateArrayWithDestructor@Base 0.95.5
WMCreateDataWithBytes@Base 0.95.5
WMCreateDataWithBytesNoCopy@Base 0.95.5
WMCreateDataWithCapacity@Base 0.95.5
WMCreateDataWithData@Base 0.95.5
WMCreateDataWithLength@Base 0.95.5
WMCreateHashTable@Base 0.95.5
WMCreateNotification@Base 0.95.5
WMCreateNotificationQueue@Base 0.95.5
WMCreatePLArray@Base 0.95.5
WMCreatePLData@Base 0.95.5
WMCreatePLDataWithBytes@Base 0.95.5
WMCreatePLDataWithBytesNoCopy@Base 0.95.5
WMCreatePLDictionary@Base 0.95.5
WMCreatePLString@Base 0.95.5
WMCreatePropListFromDescription@Base 0.95.5
WMCreateTreeBag@Base 0.95.5
WMCreateTreeBagWithDestructor@Base 0.95.5
WMCreateTreeNode@Base 0.95.5
WMCreateTreeNodeWithDestructor@Base 0.95.5
WMDataBytes@Base 0.95.5
WMDeepCopyPropList@Base 0.95.5
WMDeleteFromArray@Base 0.95.5
WMDeleteFromBag@Base 0.95.5
WMDeleteFromPLArray@Base 0.95.5
WMDeleteIdleHandler@Base 0.95.5
WMDeleteInputHandler@Base 0.95.5
WMDeleteLeafForTreeNode@Base 0.95.5
WMDeleteTimerHandler@Base 0.95.5
WMDeleteTimerWithClientData@Base 0.95.5
WMDequeueNotificationMatching@Base 0.95.5
WMDestroyTreeNode@Base 0.95.5
WMEmptyArray@Base 0.95.5
WMEmptyBag@Base 0.95.5
WMEnableUDPeriodicSynchronization@Base 0.95.5
WMEnqueueCoalesceNotification@Base 0.95.5
WMEnqueueNotification@Base 0.95.5
WMEnumerateHashTable@Base 0.95.5
WMEraseFromBag@Base 0.95.5
WMFindInArray@Base 0.95.5
WMFindInBag@Base 0.95.5
WMFindInTree@Base 0.95.5
WMFindInTreeWithDepthLimit@Base 0.95.5
WMFreeArray@Base 0.95.5
WMFreeBag@Base 0.95.5
WMFreeHashTable@Base 0.95.5
WMGetApplicationName@Base 0.95.5
WMGetArrayItemCount@Base 0.95.5
WMGetBagItemCount@Base 0.95.5
WMGetDataBytes@Base 0.95.5
WMGetDataBytesWithLength@Base 0.95.5
WMGetDataBytesWithRange@Base 0.95.5
WMGetDataForTreeNode@Base 0.95.5
WMGetDataFormat@Base 0.95.5
WMGetDataLength@Base 0.95.5
WMGetDefaultNotificationQueue@Base 0.95.5
WMGetDefaultsFromPath@Base 0.95.5
WMGetFirstInBag@Base 0.95.5
WMGetFromArray@Base 0.95.5
WMGetFromBag@Base 0.95.5
WMGetFromPLArray@Base 0.95.5
WMGetFromPLData@Base 0.95.5
WMGetFromPLDictionary@Base 0.95.5
WMGetFromPLString@Base 0.95.5
WMGetNotificationClientData@Base 0.95.5
WMGetNotificationName@Base 0.95.5
WMGetNotificationObject@Base 0.95.5
WMGetPLDataBytes@Base 0.95.5
WMGetPLDataLength@Base 0.95.5
WMGetPLDictionaryKeys@Base 0.95.5
WMGetParentForTreeNode@Base 0.95.5
WMGetPropListDescription@Base 0.95.5
WMGetPropListItemCount@Base 0.95.5
WMGetStandardUserDefaults@Base 0.95.5
WMGetSubarrayWithRange@Base 0.95.5
WMGetSubdataWithRange@Base 0.95.5
WMGetTreeNodeDepth@Base 0.95.5
WMGetUDBoolForKey@Base 0.95.5
WMGetUDFloatForKey@Base 0.95.5
WMGetUDIntegerForKey@Base 0.95.5
WMGetUDKeys@Base 0.95.5
WMGetUDObjectForKey@Base 0.95.5
WMGetUDSearchList@Base 0.95.5
WMGetUDStringForKey@Base 0.95.5
WMHashGet@Base 0.95.5
WMHashGetItemAndKey@Base 0.95.5
WMHashInsert@Base 0.95.5
WMHashRemove@Base 0.95.5
WMIncreaseDataLengthBy@Base 0.95.5
WMInitializeApplication@Base 0.95.5
WMInsertInArray@Base 0.95.5
WMInsertInBag@Base 0.95.5
WMInsertInPLArray@Base 0.95.5
WMInsertItemInTree@Base 0.95.5
WMInsertNodeInTree@Base 0.95.5
WMIntHashCallbacks@Base 0.95.5
WMIsDataEqualToData@Base 0.95.5
WMIsPLArray@Base 0.95.5
WMIsPLData@Base 0.95.5
WMIsPLDictionary@Base 0.95.5
WMIsPLString@Base 0.95.5
WMIsPropListEqualTo@Base 0.95.5
WMMapArray@Base 0.95.5
WMMapBag@Base 0.95.5
WMMergePLDictionaries@Base 0.95.5
WMNextHashEnumeratorItem@Base 0.95.5
WMNextHashEnumeratorItemAndKey@Base 0.95.5
WMNextHashEnumeratorKey@Base 0.95.5
WMPLSetCaseSensitive@Base 0.95.5
WMPathForResourceOfType@Base 0.95.5
WMPopFromArray@Base 0.95.5
WMPostNotification@Base 0.95.5
WMPostNotificationName@Base 0.95.5
WMPutInBag@Base 0.95.5
WMPutInPLDictionary@Base 0.95.5
WMReadPropListFromFile@Base 0.95.5
WMReadPropListFromPipe@Base 0.95.5
WMReleaseApplication@Base 0.95.6
WMReleaseData@Base 0.95.5
WMReleaseNotification@Base 0.95.5
WMReleasePropList@Base 0.95.5
WMRemoveFromArrayMatching@Base 0.95.5
WMRemoveFromBag@Base 0.95.5
WMRemoveFromPLArray@Base 0.95.5
WMRemoveFromPLDictionary@Base 0.95.5
WMRemoveLeafForTreeNode@Base 0.95.5
WMRemoveNotificationObserver@Base 0.95.5
WMRemoveNotificationObserverWithName@Base 0.95.5
WMRemoveUDObjectForKey@Base 0.95.5
WMReplaceDataBytesInRange@Base 0.95.5
WMReplaceDataForTreeNode@Base 0.95.5
WMReplaceInArray@Base 0.95.5
WMReplaceInBag@Base 0.95.5
WMResetDataBytesInRange@Base 0.95.5
WMResetHashTable@Base 0.95.5
WMRetainData@Base 0.95.5
WMRetainNotification@Base 0.95.5
WMRetainPropList@Base 0.95.5
WMSaveUserDefaults@Base 0.95.5
WMSetData@Base 0.95.5
WMSetDataCapacity@Base 0.95.5
WMSetDataFormat@Base 0.95.5
WMSetDataLength@Base 0.95.5
WMSetResourcePath@Base 0.95.5
WMSetUDBoolForKey@Base 0.95.5
WMSetUDFloatForKey@Base 0.95.5
WMSetUDIntegerForKey@Base 0.95.5
WMSetUDObjectForKey@Base 0.95.5
WMSetUDSearchList@Base 0.95.5
WMSetUDStringForKey@Base 0.95.5
WMShallowCopyPropList@Base 0.95.5
WMSortArray@Base 0.95.5
WMSortBag@Base 0.95.5
WMSortLeavesForTreeNode@Base 0.95.5
WMSortTree@Base 0.95.5
WMStringHashCallbacks@Base 0.95.5
WMStringPointerHashCallbacks@Base 0.95.5
WMSubtractPLDictionaries@Base 0.95.5
WMSynchronizeUserDefaults@Base 0.95.5
WMTreeWalk@Base 0.95.5
WMUserDefaultsDidChangeNotification@Base 0.95.5
WMWritePropListToFile@Base 0.95.5
WMenuParserCreate@Base 0.95.5
WMenuParserDelete@Base 0.95.5
WMenuParserError@Base 0.95.5
WMenuParserGetFilename@Base 0.95.5
WMenuParserGetLine@Base 0.95.5
WMenuParserRegisterSimpleMacro@Base 0.95.5
W_ApplicationInitialized@Base 0.95.5
W_CheckIdleHandlers@Base 0.95.5
W_CheckTimerHandlers@Base 0.95.5
W_FlushASAPNotificationQueue@Base 0.95.5
W_FlushIdleNotificationQueue@Base 0.95.5
W_HandleInputEvents@Base 0.95.5
W_InitNotificationCenter@Base 0.95.5
W_ReleaseNotificationCenter@Base 0.95.6
_WINGS_progname@Base 0.95.5
__wmessage@Base 0.95.5
isnamechr@Base 0.95.5
menu_parser_define_macro@Base 0.95.5
menu_parser_expand_macro@Base 0.95.5
menu_parser_find_macro@Base 0.95.5
menu_parser_free_macros@Base 0.95.5
menu_parser_register_preset_macros@Base 0.95.5
menu_parser_skip_spaces_and_comments@Base 0.95.5
w_save_defaults_changes@Base 0.95.6
w_syslog_close@Base 0.95.6
wcopy_file@Base 0.95.5
wdefaultspathfordomain@Base 0.95.5
wexpandpath@Base 0.95.5
wfindfile@Base 0.95.5
wfindfileinarray@Base 0.95.5
wfindfileinlist@Base 0.95.5
wfree@Base 0.95.5
wgethomedir@Base 0.95.5
wglobaldefaultspathfordomain@Base 0.95.5
wmalloc@Base 0.95.5
wmkdirhier@Base 0.95.5
wmkrange@Base 0.95.5
wrealloc@Base 0.95.5
wrelease@Base 0.95.5
wretain@Base 0.95.5
wrmdirhier@Base 0.95.5
wsetabort@Base 0.95.5
wshellquote@Base 0.95.5
wstrappend@Base 0.95.5
wstrconcat@Base 0.95.5
wstrdup@Base 0.95.5
wstrlcat@Base 0.95.5
wstrlcpy@Base 0.95.5
wstrndup@Base 0.95.5
wtokenfree@Base 0.95.5
wtokenjoin@Base 0.95.5
wtokennext@Base 0.95.5
wtokensplit@Base 0.95.5
wtrimspace@Base 0.95.5
wusergnusteppath@Base 0.95.5
wusleep@Base 0.95.5
wutil_shutdown@Base 0.95.6
-1
View File
@@ -1 +0,0 @@
Don't remove this directory
-18
View File
@@ -1,18 +0,0 @@
Description: XTerm debian configuration.
Based on Marcelo E. Magallon <mmagallo@debian.org> diff patch.
Author: Rodolfo García Peñas (kix) <kix@kix.es>
Last-Update: 2017-03-11
--- a/WindowMaker/Defaults/WMState.in
+++ b/WindowMaker/Defaults/WMState.in
@@ -10,8 +10,8 @@
Lock = Yes;
},
{
- Command = xterm;
- Name = xterm.XTerm;
+ Command = "x-terminal-emulator";
+ Name = "x-terminal-emulator.XTerm";
AutoLaunch = No;
Forced = No;
Position = "0,1";
-1
View File
@@ -1 +0,0 @@
53_Debian_WMState.diff
-63
View File
@@ -1,63 +0,0 @@
#!/usr/bin/make -f
# export DH_VERBOSE=1
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
export DEB_CFLAGS_MAINT_APPEND += -Wall
export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed
LINGUAS := $(patsubst po/%.po, %, $(wildcard po/*.po))
WMAKER_OPTIONS := --disable-xlocale --enable-modelock --enable-pango --enable-xinerama
#not-enabled --enable-usermenu --disable-shape --disable-shm --enable-randr
#not-enabled --disable-xpm --disable-png --disable-jpeg --disable-gif --disable-tiff
# Debian packages destination folder
DEBIAN_TMP := debian/tmp
# Be careful with the leading / because some of these values are going
# to be hardcoded into the executables
BASEDIR := /usr
INCLUDEDIR := $(BASEDIR)/include
SHAREDIR := $(BASEDIR)/share
GNUSTEPDIR := $(SHAREDIR)/lib/GNUstep/System
WMSHAREDIR := $(SHAREDIR)/WindowMaker
PIXMAPDIR := $(INCLUDEDIR)/X11/pixmaps
DEFSDATADIR := /etc/GNUstep/Defaults
COMMON_OPTIONS := --datadir=$(SHAREDIR) \
--with-pixmapdir=$(PIXMAPDIR) \
--with-gnustepdir=$(GNUSTEPDIR) \
--with-defsdatadir=$(DEFSDATADIR)
%:
dh $@ --parallel
override_dh_auto_configure:
env LINGUAS="$(LINGUAS)" dh_auto_configure --verbose -- \
$(COMMON_OPTIONS) $(WMAKER_OPTIONS)
override_dh_installdocs:
# Readmes - Copy+rename before install
# We use the root of the temporal directory debian/tmp
cp po/README $(DEBIAN_TMP)/README.po
cp README.definable-cursor $(DEBIAN_TMP)/README.definable-cursor
cp WPrefs.app/README $(DEBIAN_TMP)/README.WPrefs
cp WPrefs.app/po/README $(DEBIAN_TMP)/README.WPrefs.po
dh_installdocs
override_dh_install:
# Fix perms for /usr/share/WindowMaker/*sh before install them
chmod +x $(DEBIAN_TMP)$(WMSHAREDIR)/autostart.sh
chmod +x $(DEBIAN_TMP)$(WMSHAREDIR)/exitscript.sh
# Now, change the #wmdatadir# string to $(WMSHAREDIR)
perl -pi -e 's:#wmdatadir#:$(WMSHAREDIR):' `find $(DEBIAN_TMP)/$(WMSHAREDIR) -name plmenu.*`
perl -pi -e 's:#wmdatadir#:$(WMSHAREDIR):' $(DEBIAN_TMP)$(WMSHAREDIR)/wmmacros
perl -pi -e 's:#wmdatadir#:$(WMSHAREDIR):' $(DEBIAN_TMP)$(WMSHAREDIR)/plmenu
# Install files
dh_install
override_dh_installwm:
dh_installwm --priority=50
-1
View File
@@ -1 +0,0 @@
3.0 (quilt)
-2
View File
@@ -1,2 +0,0 @@
debian/debianfiles/Themes/DebianSwirl.jpg
debian/debianfiles/Themes/debian.tiff
-2
View File
@@ -1,2 +0,0 @@
# Don't store changes on autogenerated files
extend-diff-ignore = "(^|/)(distros\/.+|INSTALL-WMAKER|README.i18n)$"
-2
View File
@@ -1,2 +0,0 @@
version=4
http://windowmaker.org/ (?:|.*/)WindowMaker@ANY_VERSION@@ARCHIVE_EXT@
-1
View File
@@ -1 +0,0 @@
usr/share/xsessions
-13
View File
@@ -1,13 +0,0 @@
AUTHORS
BUGFORM
BUGS
FAQ
NEWS
README
TODO
debian/debianfiles/Themes/DebianLegacy.txt
debian/tmp/README.WPrefs
debian/tmp/README.WPrefs.po
debian/tmp/README.definable-cursor
debian/tmp/README.po
util/wm-oldmenu2new
-18
View File
@@ -1,18 +0,0 @@
debian/debianfiles/Themes/Debian.style usr/share/WindowMaker/Themes
debian/debianfiles/Themes/DebianLegacy.style usr/share/WindowMaker/Themes
debian/debianfiles/Themes/DebianSwirl.jpg usr/share/WindowMaker/Backgrounds
debian/debianfiles/Themes/debian.tiff usr/share/WindowMaker/Backgrounds
debian/debianfiles/conf/WMRootMenu etc/GNUstep/Defaults
debian/debianfiles/conf/WMWindowAttributes etc/GNUstep/Defaults
debian/debianfiles/conf/WindowMaker etc/GNUstep/Defaults
debian/debianfiles/conf/plmenu.Debian etc/GNUstep/Defaults
debian/debianfiles/wmaker usr/bin
debian/debianfiles/wmaker-common.desktop usr/share/xsessions
etc/GNUstep/Defaults/WMGLOBAL
etc/GNUstep/Defaults/WMState
usr/share/WINGs
usr/share/WindowMaker
usr/share/lib/GNUstep/System/Applications/WPrefs.app/WPrefs.tiff
usr/share/lib/GNUstep/System/Applications/WPrefs.app/WPrefs.xpm
usr/share/lib/GNUstep/System/Applications/WPrefs.app/tiff
usr/share/locale/*/LC_MESSAGES/*.mo
-1
View File
@@ -1 +0,0 @@
etc/GNUstep/Defaults/plmenu.Debian usr/share/WindowMaker/menu.hook
-6
View File
@@ -1,6 +0,0 @@
mv_conffile /etc/X11/WindowMaker/background.menu /usr/share/WindowMaker/background.menu 0.95.7-5~
mv_conffile /etc/X11/WindowMaker/wmmacros /usr/share/WindowMaker/wmmacros 0.95.7-5~
rm_conffile /etc/X11/WindowMaker/appearance.menu 0.95.7-5~
rm_conffile /etc/X11/WindowMaker/menu.posthook 0.95.7-5~
rm_conffile /etc/X11/WindowMaker/menu.prehook 0.95.7-5~
rm_conffile /etc/menu-methods/wmappearance 0.95.8-2~
-14
View File
@@ -1,14 +0,0 @@
#!/bin/sh
set -e
#DEBHELPER#
# run after debhelper code, which removes menu-methods.
if [ "$1" = "configure" ] &&
[ x"$2" != "x" ] &&
test -e /etc/GNUstep/Defaults/appearance.menu &&
dpkg --compare-versions "$2" '<<' '0.95.8-2~' ; then
if head -n1 /etc/GNUstep/Defaults/appearance.menu |
grep -q 'Automatically generated file. Do not edit.' ; then
rm /etc/GNUstep/Defaults/appearance.menu
fi
fi
-6
View File
@@ -1,6 +0,0 @@
#!/bin/sh
set -e
if [ "$1" = "purge" ] && test -e /etc/GNUstep/Defaults/appearance.menu ; then
rm /etc/GNUstep/Defaults/appearance.menu
fi
#DEBHELPER#
-8
View File
@@ -1,8 +0,0 @@
usr/bin/wxcopy
usr/bin/wxpaste
usr/share/man/cs/man1/wxcopy.1
usr/share/man/cs/man1/wxpaste.1
usr/share/man/ru/man1/wxcopy.1
usr/share/man/ru/man1/wxpaste.1
usr/share/man/sk/man1/wxcopy.1
usr/share/man/sk/man1/wxpaste.1
-2
View File
@@ -1,2 +0,0 @@
doc/wxcopy.1
doc/wxpaste.1
-35
View File
@@ -1,35 +0,0 @@
usr/bin/convertfonts usr/lib/WindowMaker
usr/bin/geticonset
usr/bin/getstyle
usr/bin/seticons
usr/bin/setstyle
usr/bin/wdread
usr/bin/wdwrite
usr/bin/wmagnify
usr/bin/wmaker usr/lib/WindowMaker
usr/bin/wmgenmenu
usr/bin/wmiv
usr/bin/wmmenugen
usr/bin/wmsetbg
usr/share/lib/GNUstep/System/Applications/WPrefs.app/WPrefs usr/lib/GNUstep/System/Applications/WPrefs.app
usr/share/man/cs/man1/geticonset.1
usr/share/man/cs/man1/getstyle.1
usr/share/man/cs/man1/seticons.1
usr/share/man/cs/man1/setstyle.1
usr/share/man/cs/man1/wdwrite.1
usr/share/man/cs/man1/wmaker.1
usr/share/man/cs/man1/wmsetbg.1
usr/share/man/ru/man1/geticonset.1
usr/share/man/ru/man1/getstyle.1
usr/share/man/ru/man1/seticons.1
usr/share/man/ru/man1/setstyle.1
usr/share/man/ru/man1/wdwrite.1
usr/share/man/ru/man1/wmaker.1
usr/share/man/ru/man1/wmsetbg.1
usr/share/man/sk/man1/geticonset.1
usr/share/man/sk/man1/getstyle.1
usr/share/man/sk/man1/seticons.1
usr/share/man/sk/man1/setstyle.1
usr/share/man/sk/man1/wdwrite.1
usr/share/man/sk/man1/wmaker.1
usr/share/man/sk/man1/wmsetbg.1
-2
View File
@@ -1,2 +0,0 @@
usr/bin/wmaker usr/bin/WindowMaker
usr/lib/GNUstep/System/Applications/WPrefs.app/WPrefs usr/bin/WPrefs
-1
View File
@@ -1 +0,0 @@
rm_conffile /etc/menu-methods/wmaker 0.95.8-2~
-14
View File
@@ -1,14 +0,0 @@
doc/WPrefs.1
doc/WindowMaker.1
doc/geticonset.1
doc/getstyle.1
doc/seticons.1
doc/setstyle.1
doc/wdread.1
doc/wdwrite.1
doc/wmagnify.1
doc/wmaker.1
doc/wmgenmenu.1
doc/wmiv.1
doc/wmmenugen.1
doc/wmsetbg.1
-14
View File
@@ -1,14 +0,0 @@
#!/bin/sh
set -e
#DEBHELPER#
# run after debhelper code, which removes menu-methods.
if [ "$1" = "configure" ] &&
[ x"$2" != "x" ] &&
test -e /etc/GNUstep/Defaults/menu.hook &&
dpkg --compare-versions "$2" '<<' '0.95.8-2~' ; then
if head -n1 /etc/GNUstep/Defaults/menu.hook |
grep -q 'Automatically generated file. Do not edit' ; then
rm /etc/GNUstep/Defaults/menu.hook
fi
fi
-6
View File
@@ -1,6 +0,0 @@
#!/bin/sh
set -e
if [ "$1" = "purge" ] && test -e /etc/GNUstep/Defaults/menu.hook ; then
rm /etc/GNUstep/Defaults/menu.hook
fi
#DEBHELPER#
-1
View File
@@ -1 +0,0 @@
/usr/bin/wmaker
+1 -1
View File
@@ -7,7 +7,7 @@ WPrefs \- Window Maker configuration tool
.SH "DESCRIPTION" .SH "DESCRIPTION"
WPrefs.app is the preferences "editor" for the WindowMaker window manager. It WPrefs.app is the preferences "editor" for the WindowMaker window manager. It
can be used to set most of the preference options of WindowMaker and define can be used to set most of the preference options of WindowMaker and define
it's applications menu. It also can change some settings that do not belong to its applications menu. It also can change some settings that do not belong to
WindowMaker. WindowMaker.
.PP .PP
Although WPrefs.app is designed to be easy to use, you should read the Although WPrefs.app is designed to be easy to use, you should read the
+7 -3
View File
@@ -313,8 +313,12 @@ AS_IF([test "x$enable_magick" = "xno"],
dnl The library was found, check if header is available and compiles dnl The library was found, check if header is available and compiles
wm_save_CFLAGS="$CFLAGS" wm_save_CFLAGS="$CFLAGS"
AS_IF([wm_fn_lib_try_compile "MagickWand/MagickWand.h" "MagickWand *wand;" "wand = NewMagickWand()" "$wm_cv_libchk_magick_cflags"], AS_IF([wm_fn_lib_try_compile "MagickWand/MagickWand.h" "MagickWand *wand;" "wand = NewMagickWand()" "$wm_cv_libchk_magick_cflags"],
[wm_cv_libchk_magick="$wm_cv_libchk_magick_cflags % $wm_cv_libchk_magick_libs"], [wm_cv_libchk_magick="$wm_cv_libchk_magick_cflags % $wm_cv_libchk_magick_libs"
[AC_MSG_ERROR([found MagickWand library but could not compile its header])]) wm_cv_libchk_magick_version=7],
[wm_fn_lib_try_compile "wand/magick_wand.h" "MagickWand *wand;" "wand = NewMagickWand()" "$wm_cv_libchk_magick_cflags"],
[wm_cv_libchk_magick="$wm_cv_libchk_magick_cflags % $wm_cv_libchk_magick_libs"
wm_cv_libchk_magick_version=6],
[AC_MSG_ERROR([found MagickWand library but could not compile its header])])
CFLAGS="$wm_save_CFLAGS"])dnl CFLAGS="$wm_save_CFLAGS"])dnl
]) ])
AS_IF([test "x$wm_cv_libchk_magick" = "xno"], AS_IF([test "x$wm_cv_libchk_magick" = "xno"],
@@ -323,7 +327,7 @@ AS_IF([test "x$enable_magick" = "xno"],
[supported_gfx="$supported_gfx Magick" [supported_gfx="$supported_gfx Magick"
MAGICKFLAGS=`echo "$wm_cv_libchk_magick" | sed -e 's, *%.*$,,' ` MAGICKFLAGS=`echo "$wm_cv_libchk_magick" | sed -e 's, *%.*$,,' `
MAGICKLIBS=`echo "$wm_cv_libchk_magick" | sed -e 's,^.*% *,,' ` MAGICKLIBS=`echo "$wm_cv_libchk_magick" | sed -e 's,^.*% *,,' `
AC_DEFINE([USE_MAGICK], [1], AC_DEFINE_UNQUOTED([USE_MAGICK], [$wm_cv_libchk_magick_version],
[defined when MagickWand library with header was found])]) [defined when MagickWand library with header was found])])
]) ])
AM_CONDITIONAL([USE_MAGICK], [test "x$enable_magick" != "xno"])dnl AM_CONDITIONAL([USE_MAGICK], [test "x$enable_magick" != "xno"])dnl
+1 -1
View File
@@ -108,7 +108,7 @@ Atom prop;
CFLAGS="$wm_save_CFLAGS"]) CFLAGS="$wm_save_CFLAGS"])
]) ])
dnl The cached check already reported problems when not found dnl The cached check already reported problems when not found
AS_IF([test "wm_cv_xext_xmu" = "xno"], AS_IF([test "x$wm_cv_xext_xmu" = "xno"],
[LIBXMU="" [LIBXMU=""
unsupported="$unsupported Xmu"], unsupported="$unsupported Xmu"],
[AC_DEFINE([HAVE_LIBXMU], [1], [AC_DEFINE([HAVE_LIBXMU], [1],
+1 -1
View File
@@ -1643,7 +1643,7 @@ msgstr "Забароніць загаловак"
msgid "" msgid ""
"Remove the titlebar of this window.\n" "Remove the titlebar of this window.\n"
"To access the window commands menu of a window\n" "To access the window commands menu of a window\n"
"without it's titlebar, press Control+Esc (or the\n" "without its titlebar, press Control+Esc (or the\n"
"equivalent shortcut, if you changed the default\n" "equivalent shortcut, if you changed the default\n"
"settings)." "settings)."
msgstr "" msgstr ""
+1 -1
View File
@@ -2063,7 +2063,7 @@ msgstr "Без заглавна ивица"
msgid "" msgid ""
"Remove the titlebar of this window.\n" "Remove the titlebar of this window.\n"
"To access the window commands menu of a window\n" "To access the window commands menu of a window\n"
"without it's titlebar, press Control+Esc (or the\n" "without its titlebar, press Control+Esc (or the\n"
"equivalent shortcut, if you changed the default\n" "equivalent shortcut, if you changed the default\n"
"settings)." "settings)."
msgstr "" msgstr ""
+1 -1
View File
@@ -1684,7 +1684,7 @@ msgstr "Deshabilitar la barra de títol"
msgid "" msgid ""
"Remove the titlebar of this window.\n" "Remove the titlebar of this window.\n"
"To access the window commands menu of a window\n" "To access the window commands menu of a window\n"
"without it's titlebar, press Control+Esc (or the\n" "without its titlebar, press Control+Esc (or the\n"
"equivalent shortcut, if you changed the default\n" "equivalent shortcut, if you changed the default\n"
"settings)." "settings)."
msgstr "" msgstr ""
+1 -1
View File
@@ -1598,7 +1598,7 @@ msgstr "Zakázat titulek"
msgid "" msgid ""
"Remove the titlebar of this window.\n" "Remove the titlebar of this window.\n"
"To access the window commands menu of a window\n" "To access the window commands menu of a window\n"
"without it's titlebar, press Control+Esc (or the\n" "without its titlebar, press Control+Esc (or the\n"
"equivalent shortcut, if you changed the default\n" "equivalent shortcut, if you changed the default\n"
"settings)." "settings)."
msgstr "" msgstr ""
+1 -1
View File
@@ -1937,7 +1937,7 @@ msgstr "Fjern titellinje"
msgid "" msgid ""
"Remove the titlebar of this window.\n" "Remove the titlebar of this window.\n"
"To access the window commands menu of a window\n" "To access the window commands menu of a window\n"
"without it's titlebar, press Control+Esc (or the\n" "without its titlebar, press Control+Esc (or the\n"
"equivalent shortcut, if you changed the default\n" "equivalent shortcut, if you changed the default\n"
"settings)." "settings)."
msgstr "" msgstr ""
+1 -1
View File
@@ -1496,7 +1496,7 @@ msgstr "Keine Titelleiste"
msgid "" msgid ""
"Remove the titlebar of this window.\n" "Remove the titlebar of this window.\n"
"To access the window commands menu of a window\n" "To access the window commands menu of a window\n"
"without it's titlebar, press Control+Esc (or the\n" "without its titlebar, press Control+Esc (or the\n"
"equivalent shortcut, if you changed the default\n" "equivalent shortcut, if you changed the default\n"
"settings)." "settings)."
msgstr "" msgstr ""
+1 -1
View File
@@ -1377,7 +1377,7 @@ msgstr "Αφαίρεση μπάρας τίτλου"
msgid "" msgid ""
"Remove the titlebar of this window.\n" "Remove the titlebar of this window.\n"
"To access the window commands menu of a window\n" "To access the window commands menu of a window\n"
"without it's titlebar, press Control+Esc (or the\n" "without its titlebar, press Control+Esc (or the\n"
"equivalent shortcut, if you changed the default\n" "equivalent shortcut, if you changed the default\n"
"settings)." "settings)."
msgstr "" msgstr ""
+1 -1
View File
@@ -1493,7 +1493,7 @@ msgstr "Deshabilitar barra de título"
msgid "" msgid ""
"Remove the titlebar of this window.\n" "Remove the titlebar of this window.\n"
"To access the window commands menu of a window\n" "To access the window commands menu of a window\n"
"without it's titlebar, press Control+Esc (or the\n" "without its titlebar, press Control+Esc (or the\n"
"equivalent shortcut, if you changed the default\n" "equivalent shortcut, if you changed the default\n"
"settings)." "settings)."
msgstr "" msgstr ""
+1 -1
View File
@@ -1468,7 +1468,7 @@ msgstr "Tiitliriba on peidus"
msgid "" msgid ""
"Remove the titlebar of this window.\n" "Remove the titlebar of this window.\n"
"To access the window commands menu of a window\n" "To access the window commands menu of a window\n"
"without it's titlebar, press Control+Esc (or the\n" "without its titlebar, press Control+Esc (or the\n"
"equivalent shortcut, if you changed the default\n" "equivalent shortcut, if you changed the default\n"
"settings)." "settings)."
msgstr "" msgstr ""
+1 -1
View File
@@ -1624,7 +1624,7 @@ msgstr "Ei otsikkopalkkia"
msgid "" msgid ""
"Remove the titlebar of this window.\n" "Remove the titlebar of this window.\n"
"To access the window commands menu of a window\n" "To access the window commands menu of a window\n"
"without it's titlebar, press Control+Esc (or the\n" "without its titlebar, press Control+Esc (or the\n"
"equivalent shortcut, if you changed the default\n" "equivalent shortcut, if you changed the default\n"
"settings)." "settings)."
msgstr "" msgstr ""
+1 -1
View File
@@ -1648,7 +1648,7 @@ msgstr "Sans barre de titre"
msgid "" msgid ""
"Remove the titlebar of this window.\n" "Remove the titlebar of this window.\n"
"To access the window commands menu of a window\n" "To access the window commands menu of a window\n"
"without it's titlebar, press Control+Esc (or the\n" "without its titlebar, press Control+Esc (or the\n"
"equivalent shortcut, if you changed the default\n" "equivalent shortcut, if you changed the default\n"
"settings)." "settings)."
msgstr "" msgstr ""
+1 -1
View File
@@ -1626,7 +1626,7 @@ msgstr "Titelbalke útskeakelje"
msgid "" msgid ""
"Remove the titlebar of this window.\n" "Remove the titlebar of this window.\n"
"To access the window commands menu of a window\n" "To access the window commands menu of a window\n"
"without it's titlebar, press Control+Esc (or the\n" "without its titlebar, press Control+Esc (or the\n"
"equivalent shortcut, if you changed the default\n" "equivalent shortcut, if you changed the default\n"
"settings)." "settings)."
msgstr "" msgstr ""
+1 -1
View File
@@ -1448,7 +1448,7 @@ msgstr "Desactivar Barra de Título"
msgid "" msgid ""
"Remove the titlebar of this window.\n" "Remove the titlebar of this window.\n"
"To access the window commands menu of a window\n" "To access the window commands menu of a window\n"
"without it's titlebar, press Control+Esc (or the\n" "without its titlebar, press Control+Esc (or the\n"
"equivalent shortcut, if you changed the default\n" "equivalent shortcut, if you changed the default\n"
"settings)." "settings)."
msgstr "" msgstr ""
+1 -1
View File
@@ -1562,7 +1562,7 @@ msgstr "Címsor letiltása"
msgid "" msgid ""
"Remove the titlebar of this window.\n" "Remove the titlebar of this window.\n"
"To access the window commands menu of a window\n" "To access the window commands menu of a window\n"
"without it's titlebar, press Control+Esc (or the\n" "without its titlebar, press Control+Esc (or the\n"
"equivalent shortcut, if you changed the default\n" "equivalent shortcut, if you changed the default\n"
"settings)." "settings)."
msgstr "" msgstr ""
+1 -1
View File
@@ -1665,7 +1665,7 @@ msgstr "Կասեցնել անուանագօտին"
msgid "" msgid ""
"Remove the titlebar of this window.\n" "Remove the titlebar of this window.\n"
"To access the window commands menu of a window\n" "To access the window commands menu of a window\n"
"without it's titlebar, press Control+Esc (or the\n" "without its titlebar, press Control+Esc (or the\n"
"equivalent shortcut, if you changed the default\n" "equivalent shortcut, if you changed the default\n"
"settings)." "settings)."
msgstr "" msgstr ""
+1 -1
View File
@@ -1580,7 +1580,7 @@ msgstr "Elimina la barra del titolo"
msgid "" msgid ""
"Remove the titlebar of this window.\n" "Remove the titlebar of this window.\n"
"To access the window commands menu of a window\n" "To access the window commands menu of a window\n"
"without it's titlebar, press Control+Esc (or the\n" "without its titlebar, press Control+Esc (or the\n"
"equivalent shortcut, if you changed the default\n" "equivalent shortcut, if you changed the default\n"
"settings)." "settings)."
msgstr "" msgstr ""
+1 -1
View File
@@ -1460,7 +1460,7 @@ msgstr "タイトルバーを表示しない"
msgid "" msgid ""
"Remove the titlebar of this window.\n" "Remove the titlebar of this window.\n"
"To access the window commands menu of a window\n" "To access the window commands menu of a window\n"
"without it's titlebar, press Control+Esc (or the\n" "without its titlebar, press Control+Esc (or the\n"
"equivalent shortcut, if you changed the default\n" "equivalent shortcut, if you changed the default\n"
"settings)." "settings)."
msgstr "" msgstr ""

Some files were not shown because too many files have changed in this diff Show More