1
0
mirror of https://github.com/gryf/wmaker.git synced 2026-07-10 12:46:36 +02:00

Compare commits

..

66 Commits

Author SHA1 Message Date
Christophe CURIS 6afa419b01 Website: Create script to update the list of man pages in the index
It is a good idea to have an Index web page with the list of the man pages
available, but there is a risk to have it outdated, so there is a script to
take care of this for us.

Signed-off-by: Christophe CURIS <christophe.curis@free.fr>
2021-06-20 22:28:19 +01:00
Christophe CURIS a2bf67f54c Website: Create script to generate the HTML version of the man pages
When running the 'make website' command, it will call groff to convert the
man pages into HTML and post-process them to get them in the style of the
site, then place them in the Website Git Repository.

Signed-off-by: Christophe CURIS <christophe.curis@free.fr>
2021-06-20 22:28:19 +01:00
Christophe CURIS 351e05dca9 Configure: Add a maintainer option to prepare generation of HTML for the website
When the new configure option '--with-web-repo' is used, the new target
'make website' becomes available and will generate HTML pages to be placed
in the Homepage Repository.

This patch does not generate any content yet but it prepares the skeleton
to handle everything.

Signed-off-by: Christophe CURIS <christophe.curis@free.fr>
2021-06-05 23:54:15 +01:00
Christophe CURIS ae78e88eef Repair compilation when Pango support is enabled
It seems there have been changes in the way Pango's header files are
installed in recent versions, probably to allow having multiple versions
together on a system.

Because one public header from WINGs has to include Pango's header, we must
include the search path provided by Pango into our WINGs search path that
are returned by pkg-config (the .pc file).

They are then also added to WindowMaker and WPrefs which use the header but
can't rely on the path from the .pc file which has not been installed yet.

Reported-by: Carlos R. Mafra <crmafra@gmail.com>
Signed-off-by: Christophe CURIS <christophe.curis@free.fr>
2021-05-29 23:55:10 +01:00
Christophe CURIS f049635fa5 Configure: Rewrite the detection for Pango library
Make use of the standard macro for PKG_CONFIG; the default behaviour is now
to use Pango if present, instead of requiring explicit user request, yet
still not making it mandatory.

The detection code was moved to a macro to keep the configure.ac script
(relatively) small, and consistent with what is done for most other libs.

Signed-off-by: Christophe CURIS <christophe.curis@free.fr>
2021-05-29 20:15:09 +01:00
Doug Torrance 4221e30bd2 Convert WPrefs.app/po/README from iso-8859-1 to utf-8 2021-05-25 22:12:23 -04:00
Doug Torrance 71558f4ce3 Convert WindowMaker/README from iso-8859-1 to utf-8 2021-05-25 22:10:15 -04:00
Doug Torrance 4b61081353 Convert po/README from iso-8859-1 to utf-8 2021-05-25 22:05:30 -04:00
Christophe CURIS 4138c57631 Configure: Rewrite the macro for checking Xft2 version
The original macro used over-complicated things, like:
 - useless uses of 'eval',
 - split AC_CACHE_CHECK construct (AC_MSG_CHECKING + AC_CACHE_VAL +
AC_MSG_RESULT)
 - dubious variable name (CPPFLAGS_old, which is not the "old" value but
the "saved" value for a temporary change)
 - variable CPPFLAGS was changed at wrong hierarchy level
 - calculate the integer value for XFT_VERSION in m4 instead generating
shell commands that had to do it on user side
 - indentation was missing

Signed-off-by: Christophe CURIS <christophe.curis@free.fr>
2021-05-22 20:00:41 +01:00
Christophe CURIS 0bbb122b94 Configure: Rewrite detection for Xft2 to properly use PKG_CONFIG macro
The goal is to use standard macros, which make code easier to maintain
(smaller, more consistent). We still keep the legacy "xfg-config" method
because we don't want to drop support for old hardware/software.

A side effect is the change in the name of the variables for the makefile,
but this goes in favour of consistency.

Signed-off-by: Christophe CURIS <christophe.curis@free.fr>
2021-05-22 20:00:41 +01:00
Christophe CURIS 0e274dc979 WRaster: Fix incorrect use of macro USE_XSHM in installed header
The header "wraster.h" needs different behaviour depending on whether the
support for X Shared Memory extension was enabled or not; but the related
macro USE_XSHM is defined by WindowMaker's configure. After this header
have been installed, the macro is no more useable.

This patch makes the "wraster.h" a generated file, so it will be different
depending on USE_XSHM, but will not make use of the macro itself.

Signed-off-by: Christophe CURIS <christophe.curis@free.fr>
2021-05-18 17:50:43 +01:00
Christophe CURIS 4dfb0dd059 WRaster: Create french translation to have at least one
The translation check would complain because it does not find any '.po'
files, so I am providing one translation.

Signed-off-by: Christophe CURIS <christophe.curis@free.fr>
2021-05-18 17:49:17 +01:00
Christophe CURIS bcb53700d6 WRaster: Improve error messages to provide useful information to user
The original error messages tended to be a bit sparse, now they try to be
a little bit more helpful, and translatable in user's language.

In xutil.c:122, took opportunity fix a problem because calling 'perror'
after other function which are likely to have changed the errno is likely
to provide a wrong error string.

Signed-off-by: Christophe CURIS <christophe.curis@free.fr>
2021-05-18 17:49:17 +01:00
Christophe CURIS e5f7ef23a6 WRaster: Made a few messages translatable
Signed-off-by: Christophe CURIS <christophe.curis@free.fr>
2021-05-18 17:49:17 +01:00
Christophe CURIS 70f89fd9c5 WRaster: Add initialisation for locale support
Because the library does not have an initialisation function, we need to
rely on an automatic called-on-load mechanism, which is provided through
a compiler attribute 'constructor'.

However, as the project aims to still compile on old hard/software, we
include a check in 'configure' to ensure it works, and if not use the
legacy solution.

Note: Because we introduce a new DEFINE, the 'config.h.in' needs to be
regenerated, otherwise you may get a compilation error in wrlib. This is
done by re-running './autogen.sh'

Signed-off-by: Christophe CURIS <christophe.curis@free.fr>
2021-05-18 17:49:17 +01:00
Christophe CURIS 19202fd2db WRaster: Create header for i18n helper functions
This patch is just adding a single header, but because it also modifies
all the C files to add the #include, it was made as a patch on its own to
ease review.

Signed-off-by: Christophe CURIS <christophe.curis@free.fr>
2021-05-18 17:49:17 +01:00
Christophe CURIS aadd694a6b WRaster: Create structure to make the library translatable
The library did not propose the mechanisms to be translated, this patch is
creating the structure in autoconf/automake and the translation directory
so its messages can be also translated.

Signed-off-by: Christophe CURIS <christophe.curis@free.fr>
2021-05-18 17:49:17 +01:00
Christophe CURIS fbec3a728f wmaker: Do not allocate memory for a temporary string for the Window Shortcut menu
When creating the list of possible shortcut for windows to populate the
window menu, a temporary buffer was allocated to hold that string.

As this allocation participates to memory fragmentation, this patch makes
use of storage on the stack instead which is also faster.

Took opportunity to include the shortcut number (%i) in the string to be
translated, because it is unlikely that adding that number at the end of
the string is right in all languages. Updated french translation because
it is the only one I am confident with.

Signed-off-by: Christophe CURIS <christophe.curis@free.fr>
2021-05-18 17:49:17 +01:00
Christophe CURIS 944bb49997 wrlib: Add compiler attributes to the API functions
With proper attributes, the compiler is able to do some extra checks on
user side to make code safer and/or better optimised.

Signed-off-by: Christophe CURIS <christophe.curis@free.fr>
2021-05-18 17:49:17 +01:00
Christophe CURIS 0ac6827a9b wmmenugen: Fix memory leaks when parsing menu in wmconfig format
As reported by Coverity (CID #50181, #50182 and #50183) the strings allocated by parse_wmconfig_line were not freed after use.

Signed-off-by: Christophe CURIS <christophe.curis@free.fr>
2021-05-18 17:49:17 +01:00
Christophe CURIS f030ab7664 wmmenugen: Fix memory leaks in XDG menu generation when getting locale-dependant name
As reported by Coverity as CID #50142, #50143, #50144 and #50145, all the
strings allocated by 'parse_locale' were never freed.

Signed-off-by: Christophe CURIS <christophe.curis@free.fr>
2021-05-18 17:49:17 +01:00
Christophe CURIS 2a8fc1df9a wmmenugen: Fix memory leak when parsing names for menus in XDG format
As reported by Coverity (CID #50146), if the function getLocalizedStringValue
returns without matching the entry, the storage for the entry's locale was
leaked.

Signed-off-by: Christophe CURIS <christophe.curis@free.fr>
2021-05-18 17:49:17 +01:00
Christophe CURIS 296456f361 wmmenugen: Fix memory leak when parsing categories in an XDG menu
Reported by Coverity (CID #50147)

Signed-off-by: Christophe CURIS <christophe.curis@free.fr>
2021-05-18 17:49:17 +01:00
Christophe CURIS f2cd2c9f03 WRaster: Properly set file's mtime in the cache when loading an image
The library maintains a cache to not reload a file that was previously
loaded. In order to still reload an image in case its file would have
changed in the meantime, the cache saves the file's modification time.

As reported by Coverity (CID #331576) the 'stat' function was not on the
execution path the first time an image is loaded, which means the cache
information is populated with junk data. This could lead to an image not
being reloaded for example.

Signed-off-by: Christophe CURIS <christophe.curis@free.fr>
2021-05-18 17:49:17 +01:00
Christophe CURIS d125f80dee WRaster: Stop parsing number in PPM file if invalid syntax is found
When the function 'pm_getuint' is reading a number, it prints an error
message if it encounters a non-digit number, yet it still enters the
processing loop which will cause an invalid number to be calculated.

Signed-off-by: Christophe CURIS <christophe.curis@free.fr>
2021-05-18 17:49:17 +01:00
Christophe CURIS 8e47ca8e62 WPrefs: Add check for invalid OPEN_MENU/EXEC in PL-Menu to avoid potential crash
As reported by Coverity (CID #50047, #50048), if the proplist is incorrect
and has an OPEN_MENU or (SH)EXEC command without its arguments, we did
dereference a NULL pointer.
Now we simply return the NULL value, appropriate to have the caller of the
function issue a message.

Signed-off-by: Christophe CURIS <christophe.curis@free.fr>
2021-05-18 17:49:17 +01:00
Christophe CURIS 29cf48b934 WPrefs: Provide fall-back colour in the case of colour name not found
As reported by Coverity (CID #331571), we did not check the return value of
the call to XParseColor. If the function is given a colour name that it
does not know, we would return an uninitialised colour.

Signed-off-by: Christophe CURIS <christophe.curis@free.fr>
2021-05-18 17:49:17 +01:00
Christophe CURIS 816fa00625 WUtil: Make sure wmalloc/wrealloc won't fail because of the abort handler
As pointed by Coverity (#50074), despite the expected behaviour that
'wmalloc' should never return NULL, it may still happen if an abort handler
set by user (with wsetabort) does not call exit() as expected. In such
case we make sure the NULL pointer dereference does not happen inside
WINGs code because we assume it is a known user choice.

Signed-off-by: Christophe CURIS <christophe.curis@free.fr>
2021-05-18 17:49:17 +01:00
Christophe CURIS 6ebec0bb9f WUtil: Fix non-closed file handle in WMWritePropListToFile
As reported by Coverity (CID #50129), in case of error during the write
operation, the failure path does include close of the file handle. In
addition to the resource leak, this may be a problem if the application
were to make a second try on the same file.

Signed-off-by: Christophe CURIS <christophe.curis@free.fr>
2021-05-18 17:49:17 +01:00
Christophe CURIS 7c50721747 WPrefs: Fix memory leak in Expert tab
As reported by Coverity (CID #331553), we leak the allocated string
returned by 'WMGetTextFieldText'

Signed-off-by: Christophe CURIS <christophe.curis@free.fr>
2021-05-18 17:49:17 +01:00
Christophe CURIS 4559cbbccc WPrefs: Fix memory leak in the Menu tab
As reported by Coverity (CID #331559), the call to 'wfindfile' replaces
the value for variable 'path' but we did not free its previous content.

Signed-off-by: Christophe CURIS <christophe.curis@free.fr>
2021-05-18 17:49:17 +01:00
Christophe CURIS e828e1c074 Fix use-after-free error in wIconStore reported by Coverity
The function always returns the filename where the icon have been saved,
but in the case where the save operation failed we would free the memory
for that file name, yet still return this pointer like if it were valid.

Took opportunity to remove redundant free(path) which is done a couple
lines later, because redundancy is a source of problem for code
maintenance.

Signed-off-by: Christophe CURIS <christophe.curis@free.fr>
2021-05-18 17:49:17 +01:00
Christophe CURIS 97a9300aa4 Fix memory leak reported by Coverity
As reported in CID #331577, we re-use the variable 'tmp' without freeing
the previously allocated pointer.

Signed-off-by: Christophe CURIS <christophe.curis@free.fr>
2021-05-18 17:49:17 +01:00
Christophe CURIS fd56152202 WPrefs: fix memory leak and potential buffer overflow
Coverity pointed that the "text" returned by WMGetTextFieldText was never
freed (CID #331578, because WMSetTextFieldText does its own copy, it does
not take the pointer as-is).

By looking at the code, there is also a potential buffer overflow because
the buffer alloc'd for "value" is sized for the exact number of digits
before increase, but the +delta can make the number use more digits so we
may write past the end of original buffer.
We write to a stack-allocated one, so it does not cost anything and does
not participates to memory fragmentation.

Signed-off-by: Christophe CURIS <christophe.curis@free.fr>
2021-05-18 17:49:17 +01:00
Christophe CURIS 58862300f9 WINGs: Fix invalid handling of Blue in the HSV conversion in ColorPanel widget
Because of a minor bug, when pure blue was chosen in RGB in the ColorPanel,
the conversion to HSV would mistreat it as white and resets its hue,
leading to possible user annoyance.
2021-05-18 17:49:17 +01:00
Christophe CURIS 1612d2f345 WINGs: increase temporary buffer to silence a gcc warning
The code limits the integer number to 0..359 so we need 4 bytes to store
that, but that require too complex flow processing for compilers to deduce
it.

It does not cost to increase the temporary buffer to the minimum size
requested by GCC, so let's do this, because spurious warnings can
potentially divert us from more important ones.

Signed-off-by: Christophe CURIS <christophe.curis@free.fr>
2021-05-18 17:49:17 +01:00
Christophe CURIS 920c6d16b1 wraster: Remove duplicate code
Duplicating things makes maintenance error-prone, which is not a good idea.
In case the abort procedure would need an update, it would be easy then
to forget some place, leading to leaks, if not worse.

Beside, goto is not as bad as academics would like people to believe, when
it is used correctly (and this case is one of them).
The name for the label was given an explicit meaning to make code easy to
understand.

Signed-off-by: Christophe CURIS <christophe.curis@free.fr>
2021-05-18 17:49:17 +01:00
Christophe CURIS 8aecba27d1 Fix usage of float constant reported by gcc
Signed-off-by: Christophe CURIS <christophe.curis@free.fr>
2021-05-18 17:49:17 +01:00
Christophe CURIS fc63d72032 WINGs: Fix incorrect use of macro USE_PANGO in installed header
The header "WINGsP.h" needs different behaviour depending on whether the
support for Pango was enabled or not. But the related macro USE_PANGO is
defined by WindowMaker's configure, and after this header have been
installed the macro is no more valid.

This patch makes the "WINGsP.h" a generated file, so it will be different
depending on USE_PANGO, but will not make use of the macro itself.

As a side effect of being now generated, the include paths in the makefile
have been updated to include build-dir too, because for users doing an
out-of-tree build the generated file (that is used during compilation) is
placed in the build-dir.

Signed-off-by: Christophe CURIS <christophe.curis@free.fr>
2021-05-18 17:49:17 +01:00
Xander eb2a9d97a2 Make dock dots scalable
This patch makes the three dots in the dock change their size when bigger icon size is used.
The logic here is such that the dots are scaled only when a certain icon size is reached;
for instance, the dots will remain unchanged if icon size is less than 128x128 px, and will
be twice as big if it's set to a value from 128x128 to 184x184 px. The get_dot_mult() func
calculates and returns the scale multiplier. In the draw_dot() func, XDrawLine() and
XDrawPoint() were replaced with XFillRectangle() because those funcs do not allow their
result to be scalable. This patch does not require additional icon size values (those bigger
than 96x96 px) to exist, but makes no use without them.
2021-05-07 18:03:19 +01:00
Xander 9abe4165d1 Add icon sizes
The classic WindowMaker allows tile icon size up to 96x96 px. This patch rises this value
to 256x256 px. It also sets the max number of visible items in the corresponding pref list
to 29 (instead of 9), so the new values show up in the list. This patch makes it possible
to use dockapps that allow changing their size to bigger than 64x64 px, see
https://gitlab.com/xander1988/dockapps for more info.
2021-05-07 18:02:03 +01:00
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
264 changed files with 5551 additions and 6174 deletions
+10
View File
@@ -120,6 +120,16 @@ WindowMaker/Defaults/WMWindowAttributes
WindowMaker/Defaults/WindowMaker
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
*~
+65 -65
View File
@@ -2810,7 +2810,7 @@ Changes since version 0.92.0:
platforms with a recent pkg-config (debian unstable/sid for one)
- Fixed buggy handling of UTF8 characters in textfields in WINGs.
(Stanislav Maslovski <stanislav.maslovski@gmail.com>)
- Fixed segfault in WPrefs when some font description is missing from the
- Fixed segfault in WPrefs when some font description is missing from the
configuration file (Stanislav Maslovski <stanislav.maslovski@gmail.com>)
- Removed WINGs' dependency on rgb.txt (from X11) and issues with locating it
on the filesystem for different systems/distributions.
@@ -2891,11 +2891,11 @@ Changes since version 0.80.2:
- Removed obsoleted acconfig.h and implemented its functionality using
AC_DEFINE and AC_DEFINE_UNQUOTED as autoconf 2.5x recommends.
This will definitely enforce the need to use autoconf 2.5x
- Added Xft2 support to WINGs, for rendering antialiased fonts with
- Added Xft2 support to WINGs, for rendering antialiased fonts with
transparency. Details in WINGs/ChangeLog.
- Fixed problem with long, preset workspace names (Wanderlei Antonio Cavassin
- Fixed problem with long, preset workspace names (Wanderlei Antonio Cavassin
<cavassin@conectiva.com.br>)
- Added kinput2 bug workaround to stock WMWindowAttributes (Seiichi SATO
- Added kinput2 bug workaround to stock WMWindowAttributes (Seiichi SATO
<sato@cvs-net.co.jp>)
- Added Belarusian translation (Ihar Viarheichyk <iverg@mail.ru>)
- Fixed wrlib not to load braindead images with 0 sized width or height
@@ -2966,7 +2966,7 @@ Changes since version 0.80.2:
- Made maximize behave differently with keyboard/mouse for xinerama
(Peter Zijlstra <a.p.zijlstra@chello.nl>)
- A few leftover xinerama fixes (Peter Zijlstra <a.p.zijlstra@chello.nl>)
- Extended the 'strut' to multiple heads
- Extended the 'strut' to multiple heads
(Peter Zijlstra <a.p.zijlstra@chello.nl>)
- Icon placement now takes into account the new xinerama extended 'strut'
(Peter Zijlstra <a.p.zijlstra@chello.nl>)
@@ -3012,7 +3012,7 @@ Changes since version 0.80.2:
by Peter Zijlstra <a.p.zijlstra@chello.nl>)
- Applied patch to enhance the Virtual Desktop behaviour, and to integrate
it with the NetWM code (Peter Zijlstra <a.p.zijlstra@chello.nl>)
- Applied a few xinerama and placement fixes (Peter Zijlstra
- Applied a few xinerama and placement fixes (Peter Zijlstra
<a.p.zijlstra@chello.nl>)
- Fixed memory leak in dock code.
- Fixed and enhanced the text wrapping in WINGs.
@@ -3036,7 +3036,7 @@ Changes since version 0.80.2:
- MacOS X style window switching panel (navigate through windows with Alt-Tab
or arrow keys)
- Added support for NET_WM_NAME/NET_WM_ICON_NAME
- Moved out font name conversion code from getstyle/setstyle/convertfonts and
- Moved out font name conversion code from getstyle/setstyle/convertfonts and
made it support fontsets
- Converted all menu and po files to UTF-8
- Updated de.po (Thomas Otto <3.1415926535897932384626433832@gmx.net>)
@@ -3059,8 +3059,8 @@ Changes since version 0.80.0:
WMState.<number> file on multihead system.
- Fixed problem with keyboard shortcuts executed an every screen for
multihead systems.
- Updated traditional chinese translations
- Fixed buglet in non-caching rootmenu option
- Updated traditional chinese translations
- Fixed buglet in non-caching rootmenu option
("John H. Robinson, IV" <jhriv@ucsd.edu>)
- Added Malay translation
- Fixed problem with kcalc not having a miniaturize button.
@@ -3081,7 +3081,7 @@ Changes since version 0.80.0:
- Added Greek (el) language pixmap (Michalis Kabrianis <Michalis@bigfoot.com>)
- Fixes icons being reduced twice when icon size != 64x64
Eduardo Pereira Habkost <ehabkost@conectiva.com.br>
- Fixed a bug that crashed wmaker when selecting the "Start alternate window
- Fixed a bug that crashed wmaker when selecting the "Start alternate window
manager" option in the crashing dialog panel.
- Window Maker will now use the WINDOWMAKER_ALT_WM environment variable (if
it is defined) to overwrite the default hardcoded fallback window manager.
@@ -3090,7 +3090,7 @@ Changes since version 0.80.0:
"Keep on Top" option is active.
- Added ability to browse for files/directories in the WPrefs menu editor.
- Added Czech translations of documentation (Jiri Hnidek <Jiri.Hnidek@vslib.cz>)
- Fixed segfault with incomplete WM_CLASS specifications.
- Fixed segfault with incomplete WM_CLASS specifications.
- Fixed a bug about arranging subviews in a WMBox after removing a subview
and a memleak occuring in the same situation.
- Fixed a bug in wdread
@@ -3102,7 +3102,7 @@ Changes since version 0.80.0:
Changes since version 0.70.0:
.............................
- Disabled window birth animation by default (while it was ok with normal
- Disabled window birth animation by default (while it was ok with normal
windows, it was very annoying with menus editing in WPrefs.app)
- Added ability to shade/unshade a window using the mouse wheel.
- Fixed compilation for systems that required -lintl for WINGs
@@ -3119,7 +3119,7 @@ Changes since version 0.70.0:
saving dock/clip/session information on exit.
- Added an internal strcasecmp() to WINGs (only on systems where's not present)
- Deminiaturizing a window that is also shaded, will perform an unshade too.
(Note that this only applies to deminiaturizing shaded windows. Unhiding
(Note that this only applies to deminiaturizing shaded windows. Unhiding
an application will keep the shaded/unshaded state of windows.)
- Removed compile time option for definable cursors and made them available by
default.
@@ -3127,7 +3127,7 @@ Changes since version 0.70.0:
will unhide the application.
- Added || pipe menu for generating non-cached menus
- Removed the collapse appicons thing.
- Added real appicon sharing (apps of the same kind will have a single shared
- Added real appicon sharing (apps of the same kind will have a single shared
appicon).
- Fixed user and global defaults domain merging to preserve values present in
global but not in user, in sub-dictionaries.
@@ -3158,7 +3158,7 @@ Changes since version 0.65.1:
(Marcelo E. Magallon <marcelo.magallon@bigfoot.com>)
- fixed crash with broken apps that set null WM_CLASS
- fixed crash when with gnome panel and multi-screens, some menu
updates and applied various other patches from
updates and applied various other patches from
(Crutcher Dunnavant <crutcher@redhat.com>)
- po file fixes (Crutcher Dunnavant <crutcher@redhat.com>)
- replaced I18N_MB with I18N in one place in src/wconfig.h.in
@@ -3187,7 +3187,7 @@ Changes since version 0.65.1:
More details about this can be found in WINGs/ChangeLog and WINGs/NEWS.
Say bye, bye libPropList =)
- rewrote all Window Maker code to use the new WINGs based proplist functions.
- fixed a few compilation warnings and a problem caused by an uninitialized
- fixed a few compilation warnings and a problem caused by an uninitialized
variable.
@@ -3229,7 +3229,7 @@ Changes since version 0.64.0:
- use Hermes in wrlib
- removed MOUSE_WS_WHEEL #defines
- fixed bug with multibyte text on libc5 systems (Osamu Ajiki <osam-a@astroarts.co.jp>)
- fixed race conditions on signal handlers
- fixed race conditions on signal handlers
- SIGINT will gently exit, SIGTERM will not be handled
- When Window Maker calls wmsetbg to set the background, it will consider the
value of the DisableDithering option and pass the right switch to wmsetbg.
@@ -3240,7 +3240,7 @@ Changes since version 0.64.0:
desktop level.
- Fixed incorrect parsing of display and screen number from $DISPLAY.
- Organized the inspector panel a bit better.
- Replaced bags with arrays wherever appropriate. This will improve
- Replaced bags with arrays wherever appropriate. This will improve
performance a bit.
- Made the Gnome tasklist skip the windows with the "Skip window list" flag
enabled. (Bastien Nocera <hadess@hadess.net>)
@@ -3258,11 +3258,11 @@ Changes since version 0.64.0:
- Added retain/release mechanism for RImages. RDestroyImage() has become
obsolete. More about this can be found in wrlib/Changelog and wrlib/NEWS.
- Small API change in WINGs to allow images with alpha blending set as the
application icons be shown correctly. More about this in WINGs/Changelog
application icons be shown correctly. More about this in WINGs/Changelog
and WINGs/NEWS.
- Made images with alpha blending be shown correctly in the panels and the
icon chooser.
- The icon image set to be shown in panels ("Logo.WMPanel") will be
- The icon image set to be shown in panels ("Logo.WMPanel") will be
automatically updated if its entry in WMWindowAttributes changes (without
a need to restart as until now).
- Fixed a bug in the icon chooser dialog that made the selected icon look
@@ -3282,7 +3282,7 @@ Changes since version 0.64.0:
Changes since version 0.63.1:
.............................
- fixed messup in get-{wings,wutil,wraster}-flags
- fixed #wmdatadir# substitution in wmaker.inst
- fixed #wmdatadir# substitution in wmaker.inst
(Seiichi SATO <sato@cvs-net.co.jp>)
- Removed spurious focus disabling for GNUstep applications - but retain
code that lets GNUstep apps control their window titlebar.
@@ -3323,7 +3323,7 @@ Changes since version 0.62.1:
- added wmagnify utility
- changed behaviour of control/shift double click on titlebar for maximize
- updated getstyle to account for extendspace options
- fixed weird color bug in jpeg loader
- fixed weird color bug in jpeg loader
(Alban Hertroys <dalroi@wit401310.student.utwente.nl>)
- improved and simplified fonts configuration for multibyte languages
(Tomohiro KUBOTA <kubota@debian.or.jp>)
@@ -3337,7 +3337,7 @@ Changes since version 0.62.1:
- fixed bug with incorrect window placement using automatic placement, while
there were shaded windows on other workspaces
- fixed some buffer overflow issues in WINGs
- fixed bug with WPrefs.app not selecting the menu appearance options after
- fixed bug with WPrefs.app not selecting the menu appearance options after
startup.
- replaced free() with wfree() wherever appropriate
- fixed some memory leaks generated by wstrappend()
@@ -3401,7 +3401,7 @@ Changes since version 0.61.1:
- changed semantics of GNUstep window attribute hints
- added get-wings-flags and get-wutil-flags with the same purpose as
get-wraster-flags, but for compiling and linking with WINGs/WUtil
- fixed bug handling non-string values given to string valued options in
- fixed bug handling non-string values given to string valued options in
defaults.c
- fixed colormap_window crash bug (appears when launching some apps from dock,
or removing apps from gnome panel etc)
@@ -3420,7 +3420,7 @@ Changes since version 0.61.1:
- added Jim Knoble <jmknoble@pobox.com>'s cursor thing patch
- fixed lock of wmaker when clicking on menu multiple times
- made transients appear near their owner
- fixed crash bug with broken java implementations (Miguel Covarrubias
- fixed crash bug with broken java implementations (Miguel Covarrubias
<mcovarr@tigr.org>)
- made Revert on attributes panel apply the reverted changes immediately
to avoid inconsistent internal state
@@ -3438,7 +3438,7 @@ Changes since version 0.61.0:
- fixed OPEN_MENU
- fixed crash when moving a shaded window with keyboard
- fixed problem with window shortcut assignment from the menu
- fixed problem with fonts in WINGs (Masahide -mac- NODA
- fixed problem with fonts in WINGs (Masahide -mac- NODA
<mac@flab.fujitsu.co.jp>)
- fixed multihead bugs (Morten Bøgeskov" <mb@dbc.dk>)
- fixed crashing bug when saving session information.
@@ -3465,7 +3465,7 @@ Changes since version 0.60.0:
- added missing kbd shortcut definitions for window shortcuts
(Michael Smith <mjsmith@spirit.com.au>)
- fixed floppy button layout in filepanel (Matthew Ashton <mrashton@home.com>)
- fixed bug with documentedited close button (Felipe A. Rodriguez
- fixed bug with documentedited close button (Felipe A. Rodriguez
<farz@mindspring.com>)
- fixed some buffer overflows
- fixed some problem with the alpha
@@ -3481,7 +3481,7 @@ Changes since version 0.60.0:
- removed drop shadow for text on title bar code. (TITLE_TEXT_SHADOW)
- text on title bar is now possible to be drawn by plugin. See NEWS.
- WPrefs: added support for button4/5
- fixed scrolling of menus outside screen (Vito Caputo
- fixed scrolling of menus outside screen (Vito Caputo
<swivel@virtual-webworld.com)
- added dialog window for menu commands that can't be executed
- fixed crash when deiconifying windows when icons are disabled
@@ -3511,7 +3511,7 @@ Changes since version 0.53.0:
- fixed crash when changing icon of window without WM_CLASS
- added hysteresys for offscreen menu scrollback
- fixed bug with IgnoreFocusClick
- fixed crash with windows with width == 1 (Alban Hertroys
- fixed crash with windows with width == 1 (Alban Hertroys
<dalroi@wit401310.student.utwente.nl>)
- added SHEXEC command
- fixed resizebarback for SHADOW_RESIZEBAR ( jim knoble jmknoble@pobox.com)
@@ -3631,7 +3631,7 @@ Changes since version 0.51.1:
- fixed bug with window that can get focus if both shaded and hidden.
- maximize for full screen
- fixed problem with frame drawing in non-opaque
- fixed problem with frame drawing in non-opaque
- fixed installation path prob [jmknoble@pobox.com]
- fixed bug moving window when only one window is on screen
- fixed bug with ignored GNUstep attributes
@@ -3727,7 +3727,7 @@ Changes since version 0.50.1:
- fixed wmsetbg
- fixed parsing of WorkspaceSpecificBack
- fixed initial workspace for new windows
- added the workspace button proxy thingy for GNOME
- added the workspace button proxy thingy for GNOME
- added more GNOME compatibility fixes
- fixed bug in %a() macro in root menu
@@ -3901,7 +3901,7 @@ Changes since version 0.19.3:
.............................
- fixed crash when closing windows in autoraise
- fixed a memory leak
- fixed a memory leak
- fixed a crash when closing Lotus Notes
- rewrote colormap code
- incomplete multihead support
@@ -4014,7 +4014,7 @@ Changes since version 0.17.5:
.............................
- fixed handling of signals when the X event queue is empty
- fixed blank window titles
- fixed blank window titles
- made current workspace entry be disabled in Move To window menu command, and
in the Clip's Move To submenu.
- fixed menu width calculation
@@ -4025,7 +4025,7 @@ Changes since version 0.17.5:
- added a hack to make everything work even if NumLock or ScrollLock is on
- added a little more verbosity to error messages
- fixed kluged workspace menu in clip
- removed workspace menu mapped through the microbutton in the clip.
- removed workspace menu mapped through the microbutton in the clip.
- remade clip button layout to be more usable
- fixed bug with keepontop and apps with Motif hints (x11amp)
- changed menu border drawing
@@ -4063,7 +4063,7 @@ Changes since version 0.17.5:
icons
- fixed bug in focusfollowmouse that made windows under the currently
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.
- drag docklets that select for mouse events to with Alt+drag
@@ -4091,7 +4091,7 @@ Changes since version 0.17.3:
- fixed bug with rootmenu that caused twin menus to be left mapped
- added DontConfirmKill option to remove confirmation panel for Kill
- fixed bug with hide of app with wmaker menu
- changed all NSsomething internal flags for the GNUstep attributes to
- changed all NSsomething internal flags for the GNUstep attributes to
WMsomething
Changes since version 0.17.2:
@@ -4099,7 +4099,7 @@ Changes since version 0.17.2:
- fixed bug in attributes panel with Disable Resizebar
- fixed save in attribs panel with windows other than the client leader
- bug in attribs panel with Revert that made it save attributes with the
- bug in attribs panel with Revert that made it save attributes with the
wrong name
- fixed (by kluging) bugs related to destroying dialog panels in a bad order
- fixed various bug with hide in empty screens
@@ -4206,7 +4206,7 @@ Changes since version 0.16.0:
- Added autoscroll for scrollers in WINGs.
- Optimized WMList and WMBrowser in WINGs.
- Button2 on clip opens workspace menu
- Changed cycling colors of selected icons.
- Changed cycling colors of selected icons.
- Made icon chooser display a better rendering of alpha-channeled icons.
- Sorted list/browser entries.
- Fixed bug in timer code that was causing some timer events to be lost.
@@ -4243,11 +4243,11 @@ Changes since version 0.15.1:
- clicking on the appicon switches to the workspace where the app was last
focused before unhiding
- fixed problem with aspect ratio setting (gr_osview etc.)
- changed some extensions in the default config/data files and removed
- changed some extensions in the default config/data files and removed
Sound.{xpm,tif} because it seem to be copyrighted.
- added icon selection panel
- changed selection indication of icons. Removed SClipColor option
- simplified animation speed options (IconSlideDelay, IconDelayStep,
- simplified animation speed options (IconSlideDelay, IconDelayStep,
MenuScrollDelay, MenuScrollStep etc. etc) to IconSlideSpeed etc.
- removed Start miniaturized/hidden items from Dock/Clip and added them
as attributes
@@ -4319,7 +4319,7 @@ Changes since version 0.15.0:
window is correctly updated if the font size is changed while running.
- Deleted unnecessary redrawing code in moveres.c.
- Many fixes to moveres.c.
- Put all the keys from defaults.c in WindowMaker domain database.
- Put all the keys from defaults.c in WindowMaker domain database.
- Fixed a crashing bug when workspace names were as long (or longer) as
MAX_WORKSPACENAME_WIDTH (16 characters). In this case a right click on a
window title caused WindowMaker to crash.
@@ -4622,7 +4622,7 @@ Changes since version 0.12.1:
Changes since version 0.12.0:
.............................
- now maintained by Matthew Hawkins <matt@mail.goldweb.com.au> while our
- now maintained by Matthew Hawkins <matt@mail.goldweb.com.au> while our
esteemed friend Alfredo is away. Have a great holiday in Japan, mate!
- fixed __DuMmY install problems
- made NextMenuBehaviour and ScrollableMenus run-time configuration options
@@ -4634,7 +4634,7 @@ Changes since version 0.11.1:
- added Launch command in dock menu
- fixed manual window placement
- fixed problem during installation in po/ directory
- changed Command format for dock state
- changed Command format for dock state
- added OffiX DND support for the dock
- added Move To submenu in window commands menu
- right click on root window does not deselect windows (to allow workspace
@@ -4650,7 +4650,7 @@ Changes since version 0.11.1:
Changes since version 0.11.0:
.............................
- fixed bug with menus that caused wmaker to crash
- fixed bug with menus that caused wmaker to crash
- brought program parameter dialog box back
- fixed autoplacement
- changed window matching precedence for WMWindowAttributes (complete, just
@@ -4671,7 +4671,7 @@ Changes since version 0.10.2:
- fixed maximize bug
- added a widget set and new dialog panels
- fixed titlebar update after font change
- renamed back _WINDOWMAKER_COMMAND to _WINDOWMAKER_WM_FUNCTION
- renamed back _WINDOWMAKER_COMMAND to _WINDOWMAKER_WM_FUNCTION
- fixed bug with miniaturization of bad behaved apps (vtcl)
Changes since version 0.10.1:
@@ -4721,7 +4721,7 @@ pipe
- more apps can be docked (ghostview et. al)
- fixed diagonal/horizontal resize detection to be like in NS
- simplified titlebar button code: removed possibility to add more buttons
- fixed window gravity handling (xclock -geometry 100x100-0-0)
- fixed window gravity handling (xclock -geometry 100x100-0-0)
- removed shadeable window attribute, added DontMoveOff
- window resize with Meta-Click3 on window
- fixed bug that caused keyboard locks if a invalid key was used in a shortcut
@@ -4831,20 +4831,20 @@ has quit. (probably the same problem with XFMail and others)
- better handling of long text
- limited windowlist menu width
- fixed arrange icons
- changed geometry display to account for base size if it's not in
- changed geometry display to account for base size if it's not in
the technical drawing style
- meta-dbl-click on appicon does hide others
- meta-dbl-click on appicon does hide others
- changed RaiseOnFocus option with RaiseDelay
- dbl-click on root window or open submenu entry brings the root menu
- dbl-click on root window or open submenu entry brings the root menu
to the cursor.
- removed AllowMenuLowering option and made menu ontopness work like on dock
- changed meta-click on dock with meta-dbl-click, to change ontopness
- moved gradient and image code to a library.
- changed meta-click on dock with meta-dbl-click, to change ontopness
- moved gradient and image code to a library.
- added support for icons with alpha channel
- simplified dithering setup
- many clean ups
- many clean ups
- not-so-good looking gradients for 8bpp
- changed application menu stuff
- changed application menu stuff
- started wmaker client library. Try out test/test.c
@@ -4889,7 +4889,7 @@ Changes since version 0.4.2:
- fixed docking on left side dock
- fixed bug in window command menu
- fixed bug in narrow windows with NEWSTYLE enabled
- fixed Hide Others crash
- fixed Hide Others crash
- I18N fixes
- hopefully stable again
@@ -4934,13 +4934,13 @@ Changes since version 0.3.2:
- application icons (not mini-windows) like I think how it is on NEXTSTEP(tm)
- 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:
............................
- fixed bug that caused window frames to be left after window closure
- submenus are opened to the left/right if it is too close to the right/left
- submenus are opened to the left/right if it is too close to the right/left
edge (not perfect, but better than before)
- remember window state (shade) on restart
- fixed resize bug
@@ -4957,14 +4957,14 @@ Changes since version 0.3.0:
- added diagonal gradients
- ignoreHideOthers window flag
- optimized/fixed window raising and lowering
- fixed menu handling: don't need to click on the menu after
- fixed menu handling: don't need to click on the menu after
it's opened to select items, just drag the pointer
- _GNUSTEP_WM_RESIZE_WINDOW, _GNUSTEP_WM_RESIZED_WINDOW protocols
- application specified titlebar button pixmaps
- transient owners get a different titlebar color when the focus
is in the transient (e.g, in NeXTese: mainWindow is highlighted correctly when
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 window_count error (this time I'm 90% sure)
- fixed focusNextWindow through Alt-Tab bug with non-focusable windows
@@ -4985,10 +4985,10 @@ with accidental dbl-clicks on the root menu.
- remade application group code (more stable)
- undid stacking code change from 0.2.0
- fixed bug that caused hangs (not sure)
- fixed bug that caused window_count error and associated crashes
- fixed bug that caused window_count error and associated crashes
- remade application defined menus
- vertical gradient
- I18N support
- I18N support
- fixed multiple window selection bug with windows in other workspaces
- changed workspace numbering
- fixed problem with series of X errors when a window is destroyed
@@ -5026,7 +5026,7 @@ you focus a shaded window
- fixed bug that allowed on top window to be lowered
- disappearing xconsole and other initial-state==IconicState windows fixed
- menus open always inside screen area
- open submenus are moved with their parents
- open submenus are moved with their parents
- keyboard support
- faster menu drawing
- hide for applications that use window_group hint fixed (LyX et al)
@@ -5089,7 +5089,7 @@ Changes since version 0.0.4:
- added cpp preprocessing
- zombie process bug fixed
- interactive and dumb (cascade) window placement
- floating transient windows
- floating transient windows
- disable mapped submenu entry on parent
- added colormap handling stolen from fvwm (temporary)
@@ -5097,10 +5097,10 @@ Changes since version 0.0.4:
Changes since version 0.0.3:
............................
- hide application implemented (just for apps that have the window_group
field of WMHints set or the WM_CLIENT_LEADER property set,
- hide application implemented (just for apps that have the window_group
field of WMHints set or the WM_CLIENT_LEADER property set,
apparently most Xt based apps)
- fixed a crashing bug caused by icons
- fixed a crashing bug caused by icons
- internal change on button pixmap structure and other places
- handling of property changes on mapped windows
- fixed bug in event handling (MapRequest)
+363 -363
View File
File diff suppressed because it is too large Load Diff
+29 -2
View File
@@ -41,11 +41,13 @@ EXTRA_DIST = TODO BUGS BUGFORM FAQ INSTALL \
script/check-cmdline-options-doc.sh \
script/check-translation-sources.sh \
script/check-wmaker-loaddef-callbacks.sh \
script/generate-html-from-man.sh \
script/generate-mapfile-from-header.sh \
script/generate-po-from-template.sh \
script/generate-txt-from-texi.sh \
script/nested-func-to-macro.sh \
script/replace-ac-keywords.sh
script/replace-ac-keywords.sh \
script/replace-generated-content.sh
.PHONY: coverage-reset coverage
@@ -62,6 +64,10 @@ coverage:
genhtml --output-directory @lcov_output_directory@ coverage/coverage.info
endif
################################################################################
# Section for the I18N processing
################################################################################
# make update-lang PO=<lang>
# ==========================
# Update the PO files against the POT file in all the translation sub-directories
@@ -80,13 +86,34 @@ if HAVE_XGETTEXT
($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) update-lang || exit $$?); \
done
SUBDIRS_PO = WINGs/po po util/po WPrefs.app/po
SUBDIRS_PO = wrlib/po WINGs/po po util/po WPrefs.app/po
else
@echo "Error: the program 'xgettext' was not found by configure, it is mandatory for this operation" >&2 ; exit 1
endif
.PHONY: update-lang
################################################################################
# Section related to generating HTML content for the website
################################################################################
if WITH_WEB_REPO
SUBDIRS_WEB = doc
website:
@for subdir in $(SUBDIRS_WEB); do \
($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) website || exit $$?); \
done
endif
.PHONY: website
################################################################################
# Section for the automated checks
################################################################################
# Create a 'silent-rule' for our make check the same way automake does
AM_V_CHKOPTS = $(am__v_CHKOPTS_$(V))
am__v_CHKOPTS_ = $(am__v_CHKOPTS_$(AM_DEFAULT_VERBOSITY))
+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
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
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,
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
OPEN_MENU file.menu
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.
OPEN_MENU | command
3. Directory handling.
@@ -3175,7 +3175,7 @@ when they are first mapped
titlebar gradients are in a single piece now
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:
{
+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
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.
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
- 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
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.
+1 -1
View File
@@ -205,7 +205,7 @@ Example .gitconfig
ui = auto
[apply]
whitespace = fix
+15 -15
View File
@@ -63,7 +63,7 @@ Changes since wmaker 0.80.1:
- Fixed small memory leak in the font panel code.
- Fixed call to qsort in WMSortArray.
- Fixed a memleak in the file panel.
- Double/triple-click selection in text widgets
- Double/triple-click selection in text widgets
(Vitaly Ovtchinnikov <ov@rbcmail.ru>)
- Fixed bug in tableview (clicked row callback got incorrect row)
(Carlos Torres <vlaadbrain@operamail.com>)
@@ -102,7 +102,7 @@ Changes since wmaker 0.70.0:
............................
- added an internal strcasecmp() (only on systems where is not present)
- removed some redundant includes of ../src/config.h when wconfig.h is
- removed some redundant includes of ../src/config.h when wconfig.h is
included too
- removed a wsyserror() message when reading a property list from file
(the programmer should decide if to give that message or just ignore).
@@ -117,7 +117,7 @@ Changes since wmaker 0.65.0:
related error when text was selected in a textfiled.
- moved wstrdup(), wstrconcat() and wstrappend() from memory.c to string.c
- added property list handling code making libPropList unnecessary and
obsolete. Backward compatibility is provided through the
obsolete. Backward compatibility is provided through the
WINGs/proplist-compat.h header file which has #defines from old libPropList
function names to new function names with minimal changes. Read this
header file and the NEWS file for more details about this subject.
@@ -197,7 +197,7 @@ changes since wmaker 0.63.1:
changes since wmaker 0.62.1:
............................
- added WRuler widget
- added WText widget (rtf multiline text widget)
- added WText widget (rtf multiline text widget)
Nwanua Elumeze <nwanua@colorado.edu>
- added a new AUTO option for the UseMultiByte option
- added WMRaiseWidget()/WMLowerWidget()
@@ -217,7 +217,7 @@ changes since wmaker 0.62.1:
- added WMGetListSelectedItems()
- added WMSetListAllowMultipleSelection(), WMListAllowsMultipleSelection().
- added WMSetListAllowEmptySelection(), WMListAllowsEmptySelection().
- WMListSelectionDidChangeNotification passes NULL as the notification
- WMListSelectionDidChangeNotification passes NULL as the notification
client data (previously passed the selected item row).
- added WMUnselectListItem(), WMSelectAllListItems(), WMUnselectAllListItems()
- better behavior of wheel mices in WMList. Simple mouse wheel events
@@ -243,8 +243,8 @@ changes since wmaker 0.62.1:
str1 with str2 and returns that in a newly malloc'ed string.
Be sure to rename wstrappend with wstrconcat in your code too, else
hazardous things can happen!
- implemented a new wstrappend() function. wstrappend(dst, src) will append
src to dst modifing dst and returning a pointer to it. No new string is
- implemented a new wstrappend() function. wstrappend(dst, src) will append
src to dst modifing dst and returning a pointer to it. No new string is
generated, except if dst is NULL, in which case its the same as calling
wstrdup(src).
dst can ONLY be NULL or a dynamically allocated string (obtained from a
@@ -334,7 +334,7 @@ changes since wmaker 0.61.1:
item that is beyond the total number of items present in the popup button.
- changed names of functions for SplitView to be consistent. Some contained
SubView while other Subview. Now all have Subview.
- fixed a bug in how input events were posted. Establishing 2 or more input
- fixed a bug in how input events were posted. Establishing 2 or more input
handlers for the same file descriptor, handling different (read/write/except)
events, caused wrong handlers to be called.
- Reimplemented the input and idle handlers with WMBag to avoid a functional
@@ -346,7 +346,7 @@ changes since wmaker 0.61.1:
2. if new_size is 0, call wfree(old), and return NULL.
3. if both old is a valid pointer and new_size>0, call realloc.
- added wstrerror(int errnum) to return the string associated with errnum.
- new wsyserrorwithcode(int error, const char* fmt, ...), similar to
- new wsyserrorwithcode(int error, const char* fmt, ...), similar to
wsyserror(), but printing the message for the specified error code.
- added 3 new classes: WMData, WMHost and WMConnection
- fixed a big memory leak in the color panel code (from Pascal Hofstee).
@@ -357,7 +357,7 @@ changes since wmaker 0.61.0:
- added WMGetTextFieldFont()
- escape key in panels (craig nellist <crn@ozemail.com.au>)
- applied patch with fixes and enhancements to textfield
- applied patch with fixes and enhancements to textfield
(Franck Wolff <wolff@cybercable.fr>)
- changed WMList to use WMBag internally, instead of a linked list
- replaced WMAddSortedListItem() with WMSortListItems()
@@ -437,10 +437,10 @@ changes since wmaker 0.53.0:
The notifications will still work, but using the delegate is preferable
How to convert old code to delegate callbacks:
1 - create a variable (static or dynamic) of the type of the
1 - create a variable (static or dynamic) of the type of the
delegate for the widget type.
2 - Replace the notification observers with the equivalent
delegate callbacks.
2 - Replace the notification observers with the equivalent
delegate callbacks.
3 - Put pointers to the callbacks in the delegate variable.
Take a look in wfilepanel.c to see how it is used there.
@@ -480,7 +480,7 @@ changes since wmaker 0.51.2:
- added WMColorWellDidChangeNotification
- added wfindfileinarray()
- fixed bug in window title setting
- fixed bug in window title setting
(MANOME Tomonori <manome@itlb.te.noda.sut.ac.jp>)
changes since wmaker 0.51.1:
@@ -611,7 +611,7 @@ I don't remember everything, but here it goes:
The same panel will be reused every time you call for it, unless you free it.
- changed semantics of WMCreateFont() so that it returns NULL if the requested
font can't be loaded
- removed WMAddDestroyCallback()
- removed WMAddDestroyCallback()
- fixed bug in WMRemovePopUpButtonItem()
- added function for user specified item height in WMList
- added WMSetPopUpButtonText(). It will set the default text in the button
+1 -1
View File
@@ -8,7 +8,7 @@ noinst_PROGRAMS = fontl puzzle colorpick
LDADD= $(top_builddir)/WINGs/libWINGs.la $(top_builddir)/wrlib/libwraster.la \
$(top_builddir)/WINGs/libWUtil.la \
@XFTLIBS@ @INTLIBS@ @XLIBS@
@XFT_LIBS@ @INTLIBS@ @XLIBS@
colorpick_DEPENDENCIES = $(top_builddir)/WINGs/libWINGs.la
+4 -4
View File
@@ -5,26 +5,26 @@ AUTOMAKE_OPTIONS =
# is this a kluge? if so, how should i do it?
includedir = @includedir@/WINGs
include_HEADERS = wtableview.h wtabledelegates.h
include_HEADERS = wtableview.h wtabledelegates.h
lib_LTLIBRARIES = libExtraWINGs.la
noinst_PROGRAMS = test
EXTRA_DIST =
EXTRA_DIST =
libExtraWINGs_la_SOURCES = \
wtableview.c \
wtabledelegates.c \
wtableview.h \
wtabledelegates.h
wtabledelegates.h
AM_CPPFLAGS = -I$(top_srcdir)/wrlib -I$(top_srcdir)/WINGs \
-DRESOURCE_PATH=\"$(datadir)/WINGs\" @HEADER_SEARCH_PATH@
LDADD= $(top_builddir)/WINGs/libWINGs.la $(top_builddir)/wrlib/libwraster.la \
$(top_builddir)/WINGs/libWUtil.la \
@XFTLIBS@ @INTLIBS@
@XFT_LIBS@ @INTLIBS@
test_LDADD = wtableview.o wtabledelegates.o $(LDADD)
+4 -4
View File
@@ -11,15 +11,15 @@ WMTableColumnDelegate *WTCreateStringDelegate(WMTableView *table);
WMTableColumnDelegate *WTCreatePixmapStringDelegate(WMTableView *parent);
WMTableColumnDelegate *WTCreateStringEditorDelegate(WMTableView *table);
WMTableColumnDelegate *WTCreateEnumSelectorDelegate(WMTableView *table);
void WTSetEnumSelectorOptions(WMTableColumnDelegate *delegate,
char **options, int count);
WMTableColumnDelegate *WTCreateBooleanSwitchDelegate(WMTableView *parent);
#ifdef __cplusplus
}
#endif
#endif
+8 -7
View File
@@ -12,13 +12,13 @@ lib_LTLIBRARIES = libWUtil.la libWINGs.la
LDADD= libWUtil.la libWINGs.la $(top_builddir)/wrlib/libwraster.la @INTLIBS@
libWINGs_la_LIBADD = libWUtil.la $(top_builddir)/wrlib/libwraster.la @XLIBS@ @XFTLIBS@ @FCLIBS@ @LIBM@ @PANGOLIBS@
libWINGs_la_LIBADD = libWUtil.la $(top_builddir)/wrlib/libwraster.la @XLIBS@ @XFT_LIBS@ @FCLIBS@ @LIBM@ @PANGO_LIBS@
libWUtil_la_LIBADD = @LIBBSD@
EXTRA_DIST = BUGS make-rgb Examples Extras Tests
# wbutton.c
# wbutton.c
libWINGs_la_SOURCES = \
configuration.c \
dragcommon.c \
@@ -87,11 +87,12 @@ libWUtil_la_SOURCES = \
wutil.c
AM_CFLAGS =
AM_CFLAGS = @PANGO_CFLAGS@
AM_CPPFLAGS = -DRESOURCE_PATH=\"$(datadir)/WINGs\" \
-I$(top_srcdir)/WINGs/WINGs -I$(top_srcdir)/wrlib -I$(top_srcdir)/src \
@XFTFLAGS@ @HEADER_SEARCH_PATH@
-I$(top_srcdir)/WINGs/WINGs -I$(top_builddir)/WINGs/WINGs \
-I$(top_builddir)/wrlib -I$(top_srcdir)/src \
@XFT_CFLAGS@ @HEADER_SEARCH_PATH@
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = WINGs.pc WUtil.pc
@@ -105,8 +106,8 @@ WINGs.pc: Makefile
@echo 'Version: $(VERSION)' >> $@
@echo 'Requires: wrlib WUtil' >> $@
@echo 'Libs: $(lib_search_path) -lWINGs' >> $@
@echo 'Libs.private: $(XFTLIBS) $(PANGOLIBS) $(XLIBS) -lm $(INTLIBS)' >> $@
@echo 'Cflags: $(inc_search_path)' >> $@
@echo 'Libs.private: $(XFT_LIBS) $(PANGOLIBS) $(XLIBS) -lm $(INTLIBS)' >> $@
@echo 'Cflags: $(inc_search_path) @PANGO_CFLAGS@' >> $@
WUtil.pc: Makefile
@echo "Generating $@"
+4 -4
View File
@@ -388,13 +388,13 @@ Property lists handling code
----------------------------
Code to handle property lists was added to WINGs. It is more robust
than the libPropList code, mostly because some conflicting concepts
than the libPropList code, mostly because some conflicting concepts
borrowed from UserDefaults (which libPropList use) are no longer used in
the WINGs property lists code. These borrowed concepts conflicted with the
retain/release mechanism of property lists and could lead in certain cases
to segmentation faults when executing libPropList based code. But the worse
part was that these libPropList problems were practically unsolvable without
removing one of those conflicting concepts and without a complete redesign.
removing one of those conflicting concepts and without a complete redesign.
The new WINGs property lists code is also better integrated with the other
data types from WINGs and is actively maintained.
@@ -469,10 +469,10 @@ All WM...IconImage() functions operate on RImages
and will also convert the RImage to a WMPixmap with a threshold of 128
and will use that pixmap for the appicon image. If that doesn't satisfy
you, you can make a call to WMSetApplicationIconPixmap() on your own to
set whatever WMPixmap you see fit for the appicon.
set whatever WMPixmap you see fit for the appicon.
- WMSetApplicationIconPixmap() will set the WMPixmap to be used for the
appicon and for the panels
appicon and for the panels
If you use only one of the above functions, the corresponding image/pixmap
+12 -12
View File
@@ -3,35 +3,35 @@
by
Alfredo Kengi Kojima
Alfredo Kengi Kojima
kojima@windowmaker.info
WINGs is a small widget set with the N*XTSTEP look and feel. It's API
is inspired in OpenStep and it's implementation borrows some ideas
WINGs is a small widget set with the N*XTSTEP 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
also has other functions that are usefull for applications, like a
User Defaults alike configuration manager and a notification system.
The library is limited and it's design is a little sloppy,
so it's not intended to build large or complex applications, like
The library is limited and its design is a little sloppy,
so it's not intended to build large or complex applications, like
anything more complex than a CDPlayer. GNUstep should be used for such
applications.
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
workaround some of it's limitations, although you'll probably be able to
and faster than say, Motif or even Athena. Knowing Xlib will help you 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.
Some of it's functions are designed to support the Window Maker window
manager (see http://windowmaker.info) In fact, it's primary role is to
Some of its functions are designed to support the Window Maker window
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.
It will help you to understand the API if you read the ApplicationKit
reference manual, distributed as a PDF by Apple. The function names,
structs and most of the intrinsics are very close to OpenStep classes.
structs and most of the intrinsics are very close to OpenStep classes.
Internationalization:
@@ -66,7 +66,7 @@ Widgets provided by WINGs:
- input box
- file panel
- color panel
- alert panel
- alert panel
- font panel
If you think you can code the following, please do. They are needed by
+4 -4
View File
@@ -2,14 +2,14 @@
AUTOMAKE_OPTIONS =
noinst_PROGRAMS = wtest wmquery wmfile testmywidget
noinst_PROGRAMS = wtest wmquery wmfile testmywidget
LDADD= $(top_builddir)/WINGs/libWINGs.la $(top_builddir)/wrlib/libwraster.la \
$(top_builddir)/WINGs/libWUtil.la \
@XFTLIBS@ @INTLIBS@ @XLIBS@
@XFT_LIBS@ @INTLIBS@ @XLIBS@
testmywidget_SOURCES = testmywidget.c mywidget.c mywidget.h
testmywidget_SOURCES = testmywidget.c mywidget.c mywidget.h
wtest_DEPENDENCIES = $(top_builddir)/WINGs/libWINGs.la
@@ -17,4 +17,4 @@ wtest_DEPENDENCIES = $(top_builddir)/WINGs/libWINGs.la
EXTRA_DIST = logo.xpm upbtn.xpm wm.html wm.png
AM_CPPFLAGS = -I$(top_srcdir)/WINGs -I$(top_srcdir)/wrlib -I$(top_srcdir)/src \
-DRESOURCE_PATH=\"$(datadir)/WINGs\" @XFTFLAGS@ @HEADER_SEARCH_PATH@
-DRESOURCE_PATH=\"$(datadir)/WINGs\" @XFT_CFLAGS@ @HEADER_SEARCH_PATH@
+4 -4
View File
@@ -8,16 +8,16 @@ ftp.windowmaker.info</u></font><Br>
</center>
<b><i>Window Maker</b>
<Img src=upbtn.xpm></i>is the GNU window manager
<Img src=upbtn.xpm></i>is the GNU window manager
for the X Window System. It was
designed to emulate the look and feel of part of the NEXTSTEP(tm) GUI. Its
supposed to be relatively fast and small, feature rich, easy to configure and
supposed to be relatively fast and small, feature rich, easy to configure and
easy to use, with a simple and elegant appearance borrowed from NEXTSTEP(tm).
<p>
<b>Window Maker</b> was designed keeping integration with GNUstep in
<b>Window Maker</b> was designed keeping integration with GNUstep in
mind and is the
"official" window manager for it. It is also part of the GNU project
(<u>www.gnu.org</u>)
(<u>www.gnu.org</u>)
<p>
<b>What is <i>GNUstep?</i></b><p>
+11 -1
View File
@@ -5,4 +5,14 @@ AUTOMAKE_OPTIONS =
# is this a kluge? if so, how should i do it?
includedir = @includedir@/WINGs
include_HEADERS = WINGs.h WUtil.h WINGsP.h
BUILT_SOURCES = WINGsP.h
CLEANFILES = WINGsP.h
include_HEADERS = WINGs.h WUtil.h
nodist_include_HEADERS = WINGsP.h
EXTRA_DIST = WINGsP.h.in
WINGsP.h: WINGsP.h.in $(top_builddir)/config.h
$(AM_V_GEN)$(top_srcdir)/script/replace-ac-keywords.sh \
--header "$(top_builddir)/config.h" \
--filter "USE_PANGO" \
-o $@ $<
@@ -5,9 +5,7 @@
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#ifdef USE_PANGO
#include <pango/pango.h>
#endif
@USE_PANGO@#include <pango/pango.h>
#include <WINGs/WINGs.h>
@@ -254,7 +252,7 @@ typedef struct W_Screen {
Atom wmIconDragOffsetAtom;
Atom wmStateAtom; /* WM_STATE */
Atom utf8String;
Atom netwmName;
@@ -459,9 +457,7 @@ typedef struct W_Font {
short refCount;
char *name;
#ifdef USE_PANGO
PangoLayout *layout;
#endif
@USE_PANGO@ PangoLayout *layout;
} W_Font;
#define W_FONTID(f) (f)->font->fid
+2 -1
View File
@@ -107,7 +107,8 @@ void *wmalloc(size_t size)
}
}
}
memset(tmp, 0, size);
if (tmp != NULL)
memset(tmp, 0, size);
return tmp;
}
+1 -1
View File
@@ -71,7 +71,7 @@ POTFILES += \
SUFFIXES = .po .mo
.po.mo:
.po.mo:
$(AM_V_GEN)$(MSGFMT) -c -o $@ $<
+2 -2
View File
@@ -3,10 +3,10 @@
#
# Initial translation
# Gudio Scholz <guido.scholz@bayernline.de>
#
#
# Adapted to versions 0.80 ff.
# Torsten Marek <shlomme@gmx.net>
#
#
msgid ""
msgstr ""
+1
View File
@@ -1695,6 +1695,7 @@ Bool WMWritePropListToFile(WMPropList * plist, const char *path)
if (fprintf(theFile, "%s\n", desc) != strlen(desc) + 1) {
werror(_("writing to file: %s failed"), thePath);
wfree(desc);
fclose(theFile);
goto failure;
}
+12 -8
View File
@@ -2645,7 +2645,7 @@ static void hsbTextFieldCallback(void *observerData, WMNotification * notificati
{
CPColor cpColor;
int value[3];
char tmp[4];
char tmp[12]; /* We only 4 bytes needed, but compilers cannot know that */
int n;
W_ColorPanel *panel = (W_ColorPanel *) observerData;
@@ -3504,13 +3504,17 @@ static void convertCPColor(CPColor * color)
old_hue = color->hsv.hue;
RRGBtoHSV(&(color->rgb), &(color->hsv));
/* In black the hue is undefined, and may change by conversion
* Same for white. */
if (((color->rgb.red == 0) &&
(color->rgb.green == 0) &&
(color->rgb.blue == 0)) ||
((color->rgb.red == 0) && (color->rgb.green == 0) && (color->rgb.blue == 255))
)
/*
* For pure grey colors, the Hue is generally calculated
* as 0, but in reality the Hue does not matter.
*
* But in an interactive GUI it is interresting to remember
* the previous Hue because if user moves away from perfect
* grey then he could be interrested in finding back his
* previous tint
*/
if ((color->rgb.red == color->rgb.green) &&
(color->rgb.red == color->rgb.blue) )
color->hsv.hue = old_hue;
break;
case cpHSV:
+1 -1
View File
@@ -945,7 +945,7 @@ void WMSetFocusToWidget(WMWidget * widget)
/*
* WMRealizeWidget-
* Realizes the widget and all it's children.
* Realizes the widget and all its children.
*
*/
void WMRealizeWidget(WMWidget * w)
+12 -6
View File
@@ -446,12 +446,18 @@ static void str2rcolor(RContext * rc, const char *name, RColor * color)
{
XColor xcolor;
XParseColor(rc->dpy, rc->cmap, name, &xcolor);
color->alpha = 255;
color->red = xcolor.red >> 8;
color->green = xcolor.green >> 8;
color->blue = xcolor.blue >> 8;
if (XParseColor(rc->dpy, rc->cmap, name, &xcolor) != 0) {
color->alpha = 255;
color->red = xcolor.red >> 8;
color->green = xcolor.green >> 8;
color->blue = xcolor.blue >> 8;
} else {
/* Color Name was not found - Return white instead */
color->alpha = 255;
color->red = 255;
color->green = 255;
color->blue = 255;
}
}
static void dumpRImage(const char *path, RImage * image)
+2 -2
View File
@@ -68,7 +68,7 @@ typedef struct _Panel {
WMButton *autoDelayB[wlengthof_nocheck(auto_delay)][wlengthof_nocheck(autoDelayPresetValues)];
WMTextField *autoDelayT[wlengthof_nocheck(auto_delay)];
WMLabel *autoDelayMsL[wlengthof_nocheck(auto_delay)];
WMFrame *dockF;
WMButton *docksB[wlengthof_nocheck(dock_config)];
} _Panel;
@@ -267,7 +267,7 @@ static void createPanel(Panel *p)
WMSetBalloonTextForView(_(dock_config[i].balloon_text), WMWidgetView(panel->docksB[i]));
WMSetButtonAction(panel->docksB[i], pushDockButton, panel);
}
WMMapSubwidgets(panel->dockF);
if (xis)
+12 -4
View File
@@ -113,7 +113,13 @@ static const struct {
/* default: */ False, OPTION_WMAKER, "OpenTransientOnOwnerWorkspace" },
{ 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" }
};
@@ -140,15 +146,16 @@ typedef struct _Panel {
static void changeIntTextfield(void *data, int delta)
{
WMTextField *textfield;
char *text;
char *text, buffer[12];
int value;
textfield = (WMTextField *)data;
text = WMGetTextFieldText(textfield);
value = atoi(text);
wfree(text);
value += delta;
sprintf(text, "%d", value);
WMSetTextFieldText(textfield, text);
sprintf(buffer, "%d", value);
WMSetTextFieldText(textfield, buffer);
}
static void downButtonCallback(WMWidget *self, void *data)
@@ -308,6 +315,7 @@ static void storeDefaults(_Panel *panel)
text = WMGetTextFieldText(panel->textfield[i]);
value = atoi(text);
wfree(text);
SetIntegerForKey(value, expert_options[i].op_name);
break;
+5 -4
View File
@@ -1,9 +1,9 @@
/* FontSimple.c- simplified font configuration panel
*
*
* WPrefs - Window Maker Preferences Program
*
*
* Copyright (c) 1998-2004 Alfredo K. Kojima
*
*
* 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
@@ -22,6 +22,7 @@
#include "WPrefs.h"
#include <unistd.h>
#include <fontconfig/fontconfig.h>
#include <math.h>
/* workaround for older fontconfig, that doesn't define these constants */
#ifndef FC_WEIGHT_NORMAL
@@ -521,7 +522,7 @@ static void selectedOption(WMWidget * w, void *data)
WMListItem *item = WMGetListItem(panel->sizeL, i);
int distance;
distance = abs(size - atoi(item->text));
distance = fabs(size - atoi(item->text));
if (i == 0 || distance < closest) {
closest = distance;
+3 -3
View File
@@ -195,8 +195,8 @@ static void showData(_Panel * panel)
if (i < 0)
i = 0;
else if (i > 9)
i = 9;
else if (i > 29)
i = 29;
WMSetPopUpButtonSelectedItem(panel->sizeP, i);
/* Mini-Previews for Icons */
@@ -339,7 +339,7 @@ static void createPanel(Panel * p)
panel->sizeP = WMCreatePopUpButton(panel->sizeF);
WMResizeWidget(panel->sizeP, 80, 20);
WMMoveWidget(panel->sizeP, 10, 19);
for (i = 24; i <= 96; i += 8) {
for (i = 24; i <= 256; i += 8) {
sprintf(buf, "%ix%i", i, i);
WMAddPopUpButtonItem(panel->sizeP, buf);
}
+4 -3
View File
@@ -4,7 +4,7 @@ AUTOMAKE_OPTIONS =
wpexecbindir = @wprefs_bindir@
wpexecbin_PROGRAMS = WPrefs
wpexecbin_PROGRAMS = WPrefs
wpdatadir = @wprefs_datadir@
@@ -45,10 +45,11 @@ WPrefs_SOURCES = \
# KeyboardSettings.c \
# Themes.c
AM_CFLAGS =
AM_CFLAGS = @PANGO_CFLAGS@
AM_CPPFLAGS = -DRESOURCE_PATH=\"$(wpdatadir)\" -DWMAKER_RESOURCE_PATH=\"$(pkgdatadir)\" \
-I$(top_srcdir)/wrlib -I$(top_srcdir)/WINGs @HEADER_SEARCH_PATH@
-I$(top_builddir)/wrlib -I$(top_srcdir)/WINGs -I$(top_builddir)/WINGs \
@HEADER_SEARCH_PATH@
WPrefs_DEPENDENCIES = $(top_builddir)/WINGs/libWINGs.la
+16 -1
View File
@@ -914,6 +914,11 @@ static ItemData *parseCommand(WMPropList * item)
data->type = ExecInfo;
if (parameter == NULL) {
wfree(data);
return NULL;
}
data->param.exec.command = wstrdup(parameter);
if (shortcut)
data->param.exec.shortcut = wstrdup(shortcut);
@@ -926,6 +931,12 @@ static ItemData *parseCommand(WMPropList * item)
* |pipe
*/
p = parameter;
if (p == NULL) {
wfree(data);
return NULL;
}
while (isspace(*p) && *p)
p++;
if (*p == '|') {
@@ -1502,8 +1513,12 @@ static void showData(_Panel * panel)
path = wexpandpath(WMGetFromPLString(pmenu));
if (access(path, F_OK) < 0)
if (access(path, F_OK) < 0) {
char *old_path = path;
path = wfindfile(DEF_CONFIG_PATHS, path);
wfree(old_path);
}
/* TODO: if needed, concatenate locale suffix to path.
See getLocalizedMenuFile() in src/rootmenu.c. */
+16 -16
View File
@@ -3,12 +3,12 @@
==========
The WindowMaker Prerefences Application
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
and define it's applications menu. It also can change some settings
that do not belong to WindowMaker.
and define its applications menu. It also can change some settings
that do not belong to WindowMaker.
Although WPrefs.app is designed to be easy to use, you should read the
user guide to be fully aware of all available options and other features
@@ -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
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.
If you change configuration often, you might want to leave WPrefs
@@ -26,7 +26,7 @@ option in the attributes panel for the WPrefs window. Of course, it will
use some memory, but by leaving it hidden it'll probably be swapped out and
stay there until you unhide it.
WPrefs is still under development. Some of the configuration options are
WPrefs is still under development. Some of the configuration options are
not yet configurable from WPrefs, notably the appearance related options.
It might contain bugs that can corrupt your configuration files, so backup
the contents of the ~/GNUstep/Defaults directory before using it.
@@ -37,19 +37,19 @@ License
-------
Like Window Maker, WPrefs is distributed with through the General Public
License (as stated in the file COPYING).
License (as stated in the file COPYING).
Notes
-----
The mouse speed configuration is saved as a call for xset in
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.
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.
Only options that have different values than what is found in the
Only options that have different values than what is found in the
system-wide configuration file is saved.
WPrefs only supports property list menus. If you have a plain text file
@@ -68,13 +68,13 @@ WPrefs will be built automatically and installed with the rest of WindowMaker.
Customized Installation
-----------------------
By default, WPrefs.app will be installed in the GNUstep applications directory,
which is /usr/local/GNUstep/Applications. If you want to install it somewhere
By default, WPrefs.app will be installed in the GNUstep applications directory,
which is /usr/local/GNUstep/Applications. If you want to install it somewhere
else, like in /some_weird_path/Applications, set the GNUSTEP_LOCAL_ROOT
environment variable to some_weird_path before running configure for
WindowMaker. You can also configure Window Maker supplying the --with-gnustepdir
option to configure, like ./configure --with-gnustepdir=/usr/GNUstep/Applications
If you change your mind after installing, you can move the .app directory
If you change your mind after installing, you can move the .app directory
to one of the following GNUstep/Applications directories:
/usr/GNUstep/Applications
@@ -93,7 +93,7 @@ Credits
-------
User interface design, programming and a few icons:
Alfredo K. Kojima <kojima@windowmaker.info>
Alfredo K. Kojima <kojima@windowmaker.info>
Additional programming:
James Thompson <jamest@math.ksu.edu>
@@ -108,7 +108,7 @@ Icon and image artwork:
WindowMaker
-----------
If for some weird reason you end up with this preferences program and
If for some weird reason you end up with this preferences program and
don't have Window Maker yet, you can get more information about it at
http://windowmaker.info and download it at ftp://ftp.windowmaker.info
@@ -116,6 +116,6 @@ http://windowmaker.info and download it at ftp://ftp.windowmaker.info
Contact
-------
Send comments and bug reports to kojima@windowmaker.info
Send comments and bug reports to kojima@windowmaker.info
Use the WindowMaker BUGFORM to report bugs.
+2 -2
View File
@@ -5,7 +5,7 @@ CATALOGS = @WPREFSMOFILES@
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 \
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 = \
$(top_srcdir)/WPrefs.app/Appearance.c \
@@ -37,7 +37,7 @@ POTFILES = \
SUFFIXES = .po .mo
.po.mo:
.po.mo:
$(AM_V_GEN)$(MSGFMT) -c -o $@ $<
+2 -2
View File
@@ -1,7 +1,7 @@
File Language Current Maintainer
------------------------------------------------------------------------------
pt.po Portuguese Eliphas Levy Theodoro <eliphas@conectiva.com.br>
hr.po Croatian Toni Biliæ <tbilic@oliver.efos.hr>
hr.po Croatian Toni Biliæ <tbilic@oliver.efos.hr>
fr.po French Bastien NOCERA <hadess@writeme.com>
Hadess <hadess@infonie.fr>
Antoine Hulin <antoine@origan.fdn.org>
@@ -23,6 +23,6 @@ bg.po Bulgarian Slavei Karadjov <slaff@exco.net>
Anton Zinoviev <zinoviev@debian.org>
sk.po Slovak Jan 'judas' Tomka <judas@linux.sk>
et.po Estonian Ivar Smolin <okul@linux.ee>
ca.po Catalan Ernest Adrogué <eadrogue@gmx.net>
ca.po Catalan Ernest Adrogué <eadrogue@gmx.net>
nl.po Dutch Alwin <translations@ziggo.nl>
fy.po Frisian Alwin <translations@ziggo.nl>
+1 -1
View File
@@ -819,7 +819,7 @@ msgstr "Clip in den Vor-/Hintergrund"
#: ../../WPrefs.app/KeyboardShortcuts.c:518
msgid "Toggle keyboard language"
msgstr "Tastatursbelegung ändern"
msgstr "Tastaturbelegung ändern"
#: ../../WPrefs.app/KeyboardShortcuts.c:532
msgid "Shortcut"
+1 -1
View File
@@ -1671,7 +1671,7 @@ msgstr "Keela tiitliriba"
msgid ""
"Remove the titlebar of this 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"
"settings)."
msgstr ""
+1 -1
View File
@@ -1,4 +1,4 @@
# French Message file for WPrefs.app
# French Message file for WPrefs.app
#
# Update History:
# Antoine Hulin <antoine.hulin@origan.fdn.org>
+26 -26
View File
@@ -1168,88 +1168,88 @@ msgid "could not initialize application"
msgstr "ne mogu inicijalizirati aplikaciju"
# msgid "could not extract version information from WindowMaker"
# msgstr "ne mogu izvuči informaciju o verziji WindowMaker-a"
#
#
# msgid "Could not load WindowMaker domain (%s) from defaults database."
# msgstr "Ne mogu učitati WindowMaker domenu (%s) iz početne baze."
#
#
# msgid "Version %s for WindowMaker %s"
# msgstr "Verzija %s za WindowMaker %s"
#
#
# msgid "Could not extract version from WindowMaker. Make sure it is correctly installed."
# msgstr "Ne mogu izvuči verziju WindowMakera. Provjerite da je ispravno instaliran."
#
#
# msgid ""
# "Programming/Design: Alfredo K. Kojima\n"
# "Artwork: Marco van Hylckama Vlieg"
# msgstr ""
# "Programiranje/Dizajn: Alfredo K. Kojima\n"
# "Artwork: Marco van Hylckama Vlieg"
#
#
# msgid "WindowMaker domain (%s) is corrupted!"
# msgstr "WindowMaker domena (%s) je oštećena!"
#
#
# msgid "WindowMaker %i.%i.%i, which is installed in your system, is not fully supported by this version of WPrefs."
# msgstr "WindowMaker %i.%i.%i, koji je instaliran na vašem sistemu, nije potpuno podržan ovom verzijom WPrefs-a."
#
#
# msgid "WindowMaker Preferences"
# msgstr "Postavke WindowMaker-a"
#
#
# msgid "Make sure WindowMaker is in your search path."
# msgstr "Provjerite da je WindowMaker u vašoj search stazi."
#
#
# msgid "...do not resize over dock"
# msgstr "ne pokrivati dock"
#
#
# msgid ""
# "WPrefs only supports WindowMaker 0.18.0 or newer.\n"
# "The version installed is %i.%i.%i\n"
# msgstr ""
# "WPrefs podržava samo WindowMaker 0.18.0 ili noviji.\n"
# "Instalirana je verzija %i.%i.%i\n"
#
#
# msgid "Could not load global WindowMaker domain (%s)."
# msgstr "Ne mogu učitati globlanu WindowMaker domenu (%s)."
#
#
# msgid "Loading WindowMaker configuration files..."
# msgstr "Učitavam WindowMaker konfiguracijske datoteke..."
#
#
# msgid "Aplications Menu Definition"
# msgstr "Definiranje izbornika Aplikacije"
#
#
# msgid "The command supplied must generate and output a valid menu definition to stdout. This definition should be in the plain text menu file format, described in the menu files included with WindowMaker, probably at ~/GNUstep/Library/WindowMaker/menu"
# msgstr "Ponuđena naredba mora generirati i ispisati važeću definicuju izbornika na stdout. Ova bi definicja trebala biti u čistom tekst menu formatu koji je opisan u menu datotekama iz distribucije, vjerojatno u ~/GNUstep/Library/WindowMaker/menu"
#
#
# msgid ""
# "bad speed value for option %s.\n"
# "Using default Medium"
# msgstr ""
# "kriva vrijednost za brzinu za opciju %s.\n"
# "Koristm Medium"
#
#
# msgid "The format of the current menu file (%s) is not supported by WPrefs. A new menu will be created."
# msgstr "Format trenutne datoteke izbornika (%s) nije podržan od strane WPrefs-a. Kreirat ću novi izbornik."
#
#
# msgid "Omnipresent miniwindows"
# msgstr "SvugdjePrisutni mini prozori"
#
#
# msgid "Error extracting version from WindowMaker. Make sure it is correctly installed."
# msgstr "Greška pri izvlačenju verzije WindowMakera. Provjerite da je ispravno instaliran."
#
#
# msgid "Auto-arrange icons"
# msgstr "Auto-pospremanje ikona"
#
#
# msgid "Open submenus to the left if they don't fit inside the screen."
# msgstr "Otvoriti podizbornike na lijevo ako ne stanu unutar ekrana."
#
#
# msgid "Use SaveUnders in icons, menus and other objects"
# msgstr "Koristi SnimiIspod u ikonama, izbornicima i drugim objektima"
#
# msgid "Type the path for the directory. You can type more than one path by separating them with spaces."
#
# msgid "Type the path for the directory. You can type more than one path by separating them with spaces."
# msgstr "Upišite stazu za direktorij. Možete upisati više od jedne staze odvajajući ih razmacima."
#
#
# msgid "invalid data in option WindowPlacementOrigin. Using default (0,0)"
# msgstr "krivi podaci u opciji WindowPlacementOrigin. Koristim (0,0)"
#
#
# msgid "Icon Size"
# msgstr "Veličina ikone"
#
#
+1 -1
View File
@@ -1,5 +1,5 @@
#
# Mensagens do WPrefs.app traduzidas p/ Português
# Mensagens do WPrefs.app traduzidas p/ Português
#
# Update History:
# Alfredo K. Kojima
+69 -18
View File
@@ -380,45 +380,71 @@ msgstr ""
"параметров и количества цветов для резервирования за\n"
"Window Maker'ом при работе с 8bit'ным цветом (8bpp)."
#: ../../WPrefs.app/Expert.c:75
msgid ""
"Disable miniwindows (icons for miniaturized windows). For use with KDE/GNOME."
msgstr ""
"Запретить миниокна (иконки для минимизированных окон). Для использования с "
"KDE/GNOME."
#: ../../WPrefs.app/Expert.c:44
msgid "Disable miniwindows (icons for minimized windows). For use with 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)."
msgstr ""
"Не устанавливать параметры, не относящиеся непосредственно к\n"
"Window Maker'у (не использовать xset)."
#: ../../WPrefs.app/Expert.c:77
#: ../../WPrefs.app/Expert.c:56
msgid "Automatically save session when exiting 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."
msgstr "Использовать SaveUnder для окон, иконок, меню и других объектов."
#: ../../WPrefs.app/Expert.c:79
msgid "Use Windoze style cycling."
msgstr "Переключение окон в стиле Windows"
#: ../../WPrefs.app/Expert.c:80
#: ../../WPrefs.app/Expert.c:62
msgid "Disable confirmation panel for the Kill command."
msgstr "Запретить диалог подтверждения для команды `Убить'."
# awn: FIXME: что это вообще значит?
#: ../../WPrefs.app/Expert.c:81
msgid "Disable selection animation for selected icons."
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"
msgstr "Установки для опытного пользователя"
#: ../../WPrefs.app/Expert.c:117
#: ../../WPrefs.app/Expert.c:330
msgid ""
"Options for people who know what they're doing...\n"
"Also have some other misc. options."
@@ -623,6 +649,11 @@ msgstr ""
"Параметры обработки иконок и миниокон. Размещение иконок,\n"
"размер иконок, в каком стиле анимировать сворачивание."
#: ../../WPrefs.app/Icons.c:414
msgid "Single click activation"
msgstr "Одинарный щелчок мыши"
#: ../../WPrefs.app/imagebrowser.c:95
msgid "View"
msgstr ""
@@ -1901,6 +1932,10 @@ msgstr ""
msgid "Resist"
msgstr "Упираться"
#: ../../WPrefs.app/WindowHandling.c:406
msgid "Opaque Move/Resize"
msgstr "Перемещ/Измен.разм."
#: ../../WPrefs.app/WindowHandling.c:407
msgid "Attract"
msgstr "Притягиваться"
@@ -1923,6 +1958,22 @@ msgstr ""
"Как обращаться с окнами. Начальное расположение окон.\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
msgid "Workspace Navigation"
msgstr "Навигация по рабочим пространствам"
+2627
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -73,5 +73,5 @@ dist_tiffdata_DATA = \
windowfocus.tiff \
workspace.tiff \
workspacename.tiff \
xis.tiff
xis.tiff
endif
+1 -1
View File
@@ -72,5 +72,5 @@ dist_xpmdata_DATA = \
windowfocus.xpm \
workspace.xpm \
workspacename.xpm \
xis.xpm
xis.xpm
endif
+1 -1
View File
@@ -1,6 +1,6 @@
defsdatadir = $(pkgdatadir)/Backgrounds
defsdata_DATA = BlueImage.jpeg
defsdata_DATA = BlueImage.jpeg
EXTRA_DIST = $(defsdata_DATA)
+1 -1
View File
@@ -3,7 +3,7 @@ defsdatadir = $(pkgdatadir)/IconSets
defsdata_DATA = Default.iconset
EXTRA_DIST =
EXTRA_DIST =
CLEANFILES = Default.iconset
+1 -1
View File
@@ -74,5 +74,5 @@ defsdata_DATA = \
xv.xpm
EXTRA_DIST = $(defsdata_DATA)
EXTRA_DIST = $(defsdata_DATA)
+6 -6
View File
@@ -17,10 +17,10 @@ in double quotes ("). Ex: "~/GNUstep/Library/WindowMaker/menu"
Instructions for editing the plain text menus can be found in the menu
file itself, kindly translated to your tongue for your convenience, by
the translation contributors.
the translation contributors.
There is a script to convert plain text menus to property list menus
in the utils directory, named wm-oldmenu2new.
in the utils directory, named wm-oldmenu2new.
If you are unsure to wich format to use, stick with the plain text menus
as they are more flexible. If for some psychological reason you are
@@ -32,11 +32,11 @@ Localized menu file translators:
File Language Maintainer
------------------------------------------------------------------------------
menu.ja Japanese MANOME Tomonori <manome@itlb.te.noda.sut.ac.jp>
menu.ja Japanese MANOME Tomonori <manome@itlb.te.noda.sut.ac.jp>
ABE Shige <sabe@ibm.net>
menu.pt Portuguese Alfredo K. Kojima <kojima@inf.ufrgs.br>
menu.de German Carsten Schaar <nhadcasc@fs-maphy.uni-hannover.de>
menu.cz Czech David ©auer <xsauer@hwlab.felk.cvut.cz>
menu.cz Czech David ©auer <xsauer@hwlab.felk.cvut.cz>
menu.ko Korean Chae-Yong Chong <cychong@metro.telecom.samsung.co.kr>
Byeong-Chan Kim <redhands@linux.sarang.net>
menu.gl Galician Xose Vazquez <xose@arrakis.es>
@@ -44,7 +44,7 @@ menu.fr French ObiTuarY <obituary@freshmeat.net>
menu.it Italian Roberto Checozzo <croberto@aerre.it>
menu.ru Russian August S.Sigov <freedomain@actor.ru>
menu.es Spanish Rodrigo Hornos Prados <tnetrhp@ctv.es>
José Luis Rivas López <jrivas@ares.ipf.uvigo.es>
José Luis Rivas López <jrivas@ares.ipf.uvigo.es>
menu.he Hebrew Please send me your name/email if you wrote this
We unfortunately lost that info :(
menu.tr Turkish F. Kagan Gurkaynak <kgf@wpi.edu>
@@ -56,7 +56,7 @@ menu.dk Danish John M. Lockard <jlockard@math.lsa.umich.edu>
Jacob Sparre Andersen <sparre@cats.nbi.dk>
menu.sl Slovene Alen Salamun <snowman@hal9000.medinet.si>
menu.hu Hungarian Csanaki Csaba <prew@mail.matav.hu>
menu.ca Català Carles Amig<F3> dj_fr3nd@hotmail.com
menu.ca Català Carles Amig<F3> dj_fr3nd@hotmail.com
menu.zh_TW.Big5 Chinese Li Wei Jih <lwj83@cs.ccu.edu.tw>
menu.zh_CN Chinese Wang Jian <wangjian2@asiainfo.com>
menu.pl Polish Maciej Friedel <tytus@tytus.itma.pwr.wroc.pl>
+5 -5
View File
@@ -5,21 +5,21 @@ Themes For Window Maker
=======================
Note: the information contained in this file is only valid for themes
in the .themed (for theme directory) format, supported in
in the .themed (for theme directory) format, supported in
Window Maker 0.20.4 or newer.
How To Install a Theme Pack
===========================
To install a theme, unpack your theme into your WindowMaker directory
To install a theme, unpack your theme into your WindowMaker directory
(the same as old-style themes), usually ~/GNUstep/Library/WindowMaker
cd ~/GNUstep/Library/WindowMaker
gzip -dc "xyztheme.tar.gz" | tar xvf -
You can also do this in your system-wide WindowMaker directory (usually
/usr/local/share/WindowMaker) to have the themes be available to all
/usr/local/share/WindowMaker) to have the themes be available to all
your users. This will probably need to be done with root access.
@@ -46,10 +46,10 @@ getstyle -p ~/GNUstep/Library/WindowMaker/Themes/MyTheme
This will create a theme pack (a new directory in either the current
directory or a directory you specify) named MyTheme.themed, containing
everything it requires, including all pixmap files. In this example,
the new theme pack would be made in your themes directory and be
the new theme pack would be made in your themes directory and be
immediately available in your Themes menu.
Additionally, you can put a text file named MyTheme.lsm in the MyTheme.themed
Additionally, you can put a text file named MyTheme.lsm in the MyTheme.themed
directory. This file can contain info like copyrights, credits or whatever.
To distribute your theme, just make a .tar.gz of the .themed directory.
+2 -2
View File
@@ -1,6 +1,6 @@
#include "wmmacros"
Uterlik MENU
Uterlik MENU
"Eftergrûn" OPEN_MENU background.menu.fy
"Stilen" OPEN_MENU -noext STYLES_DIR USER_STYLES_DIR WITH setstyle
"Tema's" OPEN_MENU -noext THEMES_DIR USER_THEMES_DIR WITH setstyle
@@ -8,5 +8,5 @@ Uterlik MENU
"Ikoaneset bewarje" EXEC geticonset USER_ICON_SETS_DIR/"%a(Ikoanesetnamme)"
"Tema bewarje" EXEC getstyle -p "%a(Temanamme)"
"Foarkarrehelpmiddel" EXEC #wprefs#
Uterlik END
Uterlik END
+2 -2
View File
@@ -1,6 +1,6 @@
#include "wmmacros"
Appearance MENU
Appearance MENU
"Background" OPEN_MENU background.menu
"Styles" OPEN_MENU -noext STYLES_DIR USER_STYLES_DIR WITH setstyle
"Themes" OPEN_MENU -noext THEMES_DIR USER_THEMES_DIR WITH setstyle
@@ -8,5 +8,5 @@ Appearance MENU
"Save IconSet" EXEC geticonset USER_ICON_SETS_DIR/"%a(IconSet name)"
"Save Theme" EXEC getstyle -p "%a(Theme name)"
"Preferences Utility" EXEC #wprefs#
Appearance END
Appearance END
+2 -2
View File
@@ -1,6 +1,6 @@
#include "wmmacros"
Uiterlijk MENU
Uiterlijk MENU
"Achtergrond" OPEN_MENU background.menu.nl
"Stijlen" OPEN_MENU -noext STYLES_DIR USER_STYLES_DIR WITH setstyle
"Thema's" OPEN_MENU -noext THEMES_DIR USER_THEMES_DIR WITH setstyle
@@ -8,5 +8,5 @@ Uiterlijk MENU
"Iconenset opslaan" EXEC geticonset USER_ICON_SETS_DIR/"%a(Iconensetnaam)"
"Thema opslaan" EXEC getstyle -p "%a(Themanaam)"
"Voorkeurenhulpmiddel" EXEC #wprefs#
Uiterlijk END
Uiterlijk END
+11 -11
View File
@@ -18,11 +18,11 @@
* No es pot especificar una combinació de tecles per a un MENU o un
* OPEN_MENU
*
* <Comanda> pot ser un d'aquests comandes:
* <Comanda> pot ser un d'aquests comandes:
* MENU - Comença la definició d'un submenú
* END - Acaba la definició d'un submenú
* OPEN_MENU - Obre el contingut d'un menú desde un fitxer, una
* canonada (pipe), o desde el contingut de un(s)
* canonada (pipe), o desde el contingut de un(s)
* directori(s) i eventualment pot precedir-li algun
* comanda
* WORKSPACE_MENU - Afageix el menú de operacions del escriptori. Tan
@@ -38,16 +38,16 @@
* HIDE_OTHERS - Oculta totes les finestres de l'escriptori excepte la
* actual (o la darrera que ha estat activa)
* SAVE_SESSION - Guarda l'estat actual de l'escriptori, que inclou
* totes les aplicacions en execució, la seva geometria, la
* posició en pantalla, l'escriptori en que estaven, el dock
* o el clip desde on van ser executades, i si estaven
* totes les aplicacions en execució, la seva geometria, la
* posició en pantalla, l'escriptori en que estaven, el dock
* o el clip desde on van ser executades, i si estaven
* minimitzades, ocultes o plegades. També guarda l'escriptori
* que és usat en aquest moment. Tot això serà restaurat el
* que és usat en aquest moment. Tot això serà restaurat el
* pròxim cop que s'arrenqui Window Maker fins que es faci un
* altre SAVE_SESSION o CLEAR_SESSION. Si SaveSessionOnExit =
* Yes; el fitxer de domini de Window Maker, llavors la sessió
* es guardarà cada cop que es surt de Window Maker,
* sobreescribint qualsevol SAVE_SESSION o CLEAR_SESSION
* es guardarà cada cop que es surt de Window Maker,
* sobreescribint qualsevol SAVE_SESSION o CLEAR_SESSION
* (veure avall)
* CLEAR_SESSION - Borra qualsevol sessió guardada anteriorment. No té
* cap efecte si SaveSessionOnExit és verdader
@@ -115,7 +115,7 @@
"Llista de Processos" EXEC xterm -e top
"Manual d'instruccions" EXEC xman
"Informació" END
"XTerm" EXEC xterm -sb
"XTerm" EXEC xterm -sb
"Rxvt" EXEC rxvt -bg black -fg white -fn fixed
"Escriptoris" WORKSPACE_MENU
"Aplicacions" MENU
@@ -128,7 +128,7 @@
"X File Manager" EXEC xfm
"OffiX Files" EXEC files
"LyX" EXEC lyx
"Netscape" EXEC netscape
"Netscape" EXEC netscape
"Ghostview" EXEC ghostview %a(Enter file to view)
"Acrobat" EXEC /usr/local/Acrobat3/bin/acroread %a(Enter PDF to view)
"TkDesk" EXEC tkdesk
@@ -136,7 +136,7 @@
"Editors" MENU
"XFte" EXEC xfte
"XEmacs" SHEXEC xemacs || emacs
"XJed" EXEC xjed
"XJed" EXEC xjed
"NEdit" EXEC nedit
"Xedit" EXEC xedit
"VI" EXEC xterm -e vi
+5 -5
View File
@@ -9,7 +9,7 @@
// <Titulek> je jakýkoli řetěz znaků. Pokud obsahuje mezery musí být
// uzavřen do uvozovek (")
//
// <Příkaz> může být jeden z následujících:
// <Příkaz> může být jeden z následujících:
// MENU - definice nové (sub)menu
// END - konec definice nového menu
// EXEC <program> - provede se program
@@ -24,18 +24,18 @@
// bylo naposledy zaměřeno)
//
// <Parameters> je program, který bude proveden.
//
// Každý příkaz MENU musí mít odpovídající END.
//
// Každý příkaz MENU musí mít odpovídající END.
// následující text je česky, kódován ISO8859-2.
#include <wmmacros>
"Hlavní menu" MENU
"Správce oken" MENU
"Správce oken" MENU
"Editace menu" SHEXEC xterm -T 'Editace menu' -e joe $HOME/GNUstep/Library/WindowMaker/menu
"Správce oken" END
"Info" MENU
"Info Panel..." INFO_PANEL
"Legal" LEGAL_PANEL
"Legal" LEGAL_PANEL
// "Xosview" EXEC xosview
"Top" EXEC xterm -e top
"Manuál" EXEC xman
+7 -7
View File
@@ -7,13 +7,13 @@
*
* <Titel> er en tekst som anvendes som titel i menuen. Teksten
* skal omgives med " hvis den indeholder mellemrum.
*
*
* SHORTCUT angiver en genvej for menuobjektet. <Genvej> har samme
* syntaks som genvejene i filen $HOME/GNUStep/Defaults/WindowMaker.
*
* Man kan ikke angive en genvej for kommandoerne MENU og OPEN_MENU.
*
* <Kommando> kan være et af følgende:
*
* <Kommando> kan være et af følgende:
* MENU - starter (under)menu definition.
* END - afslutter (under)menu definition.
* OPEN_MENU - åbner en menu fra en fil, pipe eller indholdet af
@@ -109,8 +109,8 @@
"Manualer" EXEC xman
"Info" END
"Kør..." SHEXEC "%a(Kør,Indtast kommando der skal udføres:)"
"XTerm" EXEC xterm -sb
"Rxvt" EXEC rxvt -bg black -fg white
"XTerm" EXEC xterm -sb
"Rxvt" EXEC rxvt -bg black -fg white
"Arbejdsborde" WORKSPACE_MENU
"Applikationer" MENU
"Grafik" MENU
@@ -122,7 +122,7 @@
"X Filhåndtering" EXEC xfm
"OffiX Files" EXEC files
"LyX" EXEC lyx
"Netscape" EXEC netscape
"Netscape" EXEC netscape
"Ghostview" EXEC ghostview %a(GhostView,Indtast filnavn)
"Acrobat" EXEC /usr/local/Acrobat3/bin/acroread %a(Acrobat,Indtast PDF-filnavn)
"TkDesk" EXEC tkdesk
@@ -130,7 +130,7 @@
"Tekstbehandling" MENU
"XFte" EXEC xfte
"Emacs" SHEXEC xemacs || emacs
"XJed" EXEC xjed
"XJed" EXEC xjed
"NEdit" EXEC nedit
"Xedit" EXEC xedit
"VI" EXEC xterm -e vi
+1 -1
View File
@@ -8,7 +8,7 @@
// <Title> ist ein Text, der als Titel benutzt werden soll. Falls er
// Leerzeichen enthält, muss er von " umgeben sein.
//
// <Command> eine der folgenden gültigen Anweisungen:
// <Command> eine der folgenden gültigen Anweisungen:
// MENU - beginnt (Unter)menüdefinition
// END - beendet (Unter)menüdefinition
// EXEC <program> - führt ein externes Programm aus
+16 -16
View File
@@ -8,14 +8,14 @@
* <Title> είναι η ονομασία του προγράμματος ή εντολής. Αν είναι περισσότερες
* από μία λέξεις πρέπει να εμπεριέχονται μεταξύ εισαγωγικών π.χ:
* "Το Πρόγραμμα"
*
*
* SHORTCUT είναι ο συνδυασμός πλήκτρων για το συγκεκριμένο πρόγραμμα π.χ:
* "Meta+1". Άλλα παραδείγματα θα δείτε στο αχρείο:
* $HOME/GNUstep/Defaults/WindowMaker
*
* Δεν μπορεί να δηλωθεί ένα shortcut για MENU και για OPEN_MENU εντολή.
*
* <Command> μία από τις εντολές:
*
* <Command> μία από τις εντολές:
* MENU - το σημείο που ξεκινά ένα υπομενού
* END - το σημείο που τελειώνει ένα υπομενού
* OPEN_MENU - ανοίγει ένα μενού από ένα αρχείο, pipe ή τα περιεχόμενα ενός
@@ -26,7 +26,7 @@
* SHEXEC <command> - εκτέλεση εντολής κέλυφους (όπως gimp > /dev/null)
* EXIT - έξοδος από τον Διαχειριστή Παραθύρων
* RESTART [<window manager>] - επανεκκινεί τον Window Maker ή ξεκινάει
* ένας άλλος window manager
* ένας άλλος window manager
* REFRESH - ανανεώνει την προβολή της Επιφάνειας στην οθόνη
* ARRANGE_ICONS - τακτοποίηση των εικονιδίων στην Επιφάνεια
* SHUTDOWN - τερματίζει βίαια όλους τους clients
@@ -34,7 +34,7 @@
* SHOW_ALL - εμφανίζει όλα τα "κρυμμένα" παράθυρα στην Επιφάνεια
* HIDE_OTHERS - "κρύβει" όλα τα παράθυρα στην Επιφάνεια, εκτός από
* αυτό που είναι "ενεργό" (ή το τελευταίο που ήταν "ενεργό")
* SAVE_SESSION - αποθηκεύει την εκάστοτε "κατάσταση" της Επιφάνειας, το
* SAVE_SESSION - αποθηκεύει την εκάστοτε "κατάσταση" της Επιφάνειας, το
* οποίο σημαίνει, όλα τα προγράμματα που εκτελούνται εκείνη τη
* στιγμή με όλες τους τις ιδιότητες (γεωμετρία, θέση στην
* οθόνη, επιφάνεια εργασίας στην οποία έχουν εκτελεστεί, Dock ή
@@ -48,31 +48,31 @@
* "SaveSessionOnExit = Yes;", τότε όλα τα παραπάνω γίνονται
* αυτόματα με κάθε έξοδο του χρήστη από τον Window Maker,
* ακυρώνοντας ουσιαστικά κάθε προηγούμενη χρήση τως εντολών
* SAVE_SESSION ή CLEAR_SESSION (βλέπε παρακάτω).
* CLEAR_SESSION - σβήνει όλες τις πληροφορίες που έχουν αποθηκευθεί
* σύμφωνα με τα παραπάνω. Δεν θα έχει όμως κανένα αποτέλεσμα
* SAVE_SESSION ή CLEAR_SESSION (βλέπε παρακάτω).
* CLEAR_SESSION - σβήνει όλες τις πληροφορίες που έχουν αποθηκευθεί
* σύμφωνα με τα παραπάνω. Δεν θα έχει όμως κανένα αποτέλεσμα
* αν η εντολή SaveSessionOnExit=Yes.
* INFO - Πληροφορίες σχετικά με τον Window Maker
*
* OPEN_MENU σύνταξη:
* 1. Χειρισμός ενός αρχείου-μενού.
* // ανοίγει το "αρχείο.μενού" το οποίο περιέχει ένα έγκυρο αρχείο-μενού
* // ανοίγει το "αρχείο.μενού" το οποίο περιέχει ένα έγκυρο αρχείο-μενού
* // καιτο εισάγει στην εκάστοτε θέση
* OPEN_MENU αρχείο.μενού
* 2. Χειρισμός ενός Pipe μενού.
* // τρέχει μια εντολή και χρησιμοποιεί την stdout αυτής για την κατασκευή
* // του μενού. Το αποτέλεσμα της εντολής πρέπει να έχει έγκυρη σύνταξη
* // για χρήση ως μενού. Το κενό διάστημα μεταξύ "|" και "εντολής" είναι
* // του μενού. Το αποτέλεσμα της εντολής πρέπει να έχει έγκυρη σύνταξη
* // για χρήση ως μενού. Το κενό διάστημα μεταξύ "|" και "εντολής" είναι
* // προεραιτικό.
* OPEN_MENU | εντολή
* 3. Χειρισμός ενός καταλόγου.
* // Ανοίγει έναν ή περισσότερους καταλόγους και κατασκευάζει ένα μενού με
* // όλους τους υποκαταλόγους και τα εκτελέσιμα αρχεία σε αυτούς
* // όλους τους υποκαταλόγους και τα εκτελέσιμα αρχεία σε αυτούς
* // κατανεμημένα αλφαβητικά.
* OPEN_MENU /κάποιος/κατάλογος [/κάποιος/άλλος/κατάλογος ...]
* 4. Χειρισμός ενός καταλόγου με κάποια εντολή.
* // Ανοίγει έναν ή περισσότερους καταλόγους και κατασκευάζει ένα μενού με
* // όλους τους υποκαταλόγους και τα αναγνώσιμα αρχεία σε αυτούς
* // όλους τους υποκαταλόγους και τα αναγνώσιμα αρχεία σε αυτούς
* // κατανεμημένα αλφαβητικά, τα οποία μπορούν να εκτελεστούν με μία
* // εντολή.
* OPEN_MENU /κάποιος/κατάλογος [/κάποιος/άλλος/κατάλογος ...] WITH εντολή -παράμετροι
@@ -124,7 +124,7 @@
"Βοήθεια" EXEC xman
"Πληροφορίες" END
"Εκτέλεση..." SHEXEC %a(Εκτέλεση,Γράψε την εντολή προς εκτέλεση:)
"XTerm" EXEC xterm -sb
"XTerm" EXEC xterm -sb
"Rxvt" EXEC rxvt -bg black -fg white -fn grfixed
"Επιφάνειες" WORKSPACE_MENU
"Προγράμματα" MENU
@@ -137,7 +137,7 @@
"X File Manager" EXEC xfm
"OffiX Files" EXEC files
"LyX" EXEC lyx
"Netscape" EXEC netscape
"Netscape" EXEC netscape
"Ghostview" EXEC ghostview %a(Αρχείο προς ανάγνωση)
"Acrobat" EXEC /usr/local/Acrobat3/bin/acroread %a(Acrobar,Γράψε το PDF προς προβολή)
"TkDesk" EXEC tkdesk
@@ -145,7 +145,7 @@
"Κειμενογράφοι" MENU
"XFte" EXEC xfte
"XEmacs" SHEXEC xemacs || emacs
"XJed" EXEC xjed
"XJed" EXEC xjed
"NEdit" EXEC nedit
"Xedit" EXEC xedit
"VI" EXEC xterm -e vi
+10 -10
View File
@@ -8,7 +8,7 @@
//
// <Título> cadena de texto usada como el título.Tiene que estar entre ""
//
// <Comando> un comando de los siguientes :
// <Comando> un comando de los siguientes :
// MENU - comienza la definición del (sub)menu.
// END - termina la definición del (sub)menu.
// EXEC <programa> - ejecuta un programa externo
@@ -23,12 +23,12 @@
// excepto la que tiene el foco (o la ultima que haya recibido el foco)
//
// <Parametros> es el programa a ejecutar.
//
//
// ** Opciones para a linea de comando EXEC :
// %s - se sustituye por la corriente seleción. Si la selección no es posible ,
// el comando es cancelado
// %w - se sustituye con la corrente ID de la ventana selecionada . Si no hay
// ventanas selecionadas , no se devuolve nada.
// %w - se sustituye con la corrente ID de la ventana selecionada . Si no hay
// ventanas selecionadas , no se devuolve nada.
//
// Se puede anular carácteres especiales (como % e ") con el caracter \ :
// ejemplo: xterm -T "\"Terminal X\""
@@ -54,14 +54,14 @@
"Emuladores ..." END
"Aplicaciones ..." MENU
"Graficos ..." MENU
"Gimp" EXEC gimp
"XV" EXEC xv
"XPaint" EXEC xpaint
"XFig" EXEC xfig
"Graficos ..." END
"Editores ..." MENU
"XEmacs" SHEXEC xemacs || emacs
"XJed" EXEC xjed
@@ -69,13 +69,13 @@
"Xedit" EXEC xedit
"VI" EXEC xterm -e vi
"Editores ..." END
"Multimedia ..." MENU
"Xmcd" SHEXEC xmcd 2> /dev/null
"Xplaycd" EXEC xplaycd
"Xmixer" EXEC xmixer
"Multimedia ..." END
"Utilidades ..." MENU
"Calculadora" EXEC xcalc
"Selector de fuente" EXEC xfontsel
@@ -85,7 +85,7 @@
"ASClock" EXEC asclock -shape
"Portapapeles" EXEC xclipboard
"Utilidades ..." END
"X File Manager" EXEC xfm
"OffiX Files" EXEC files
"LyX" EXEC lyx
@@ -123,7 +123,7 @@
"Configurar Area de Trabajo ..." END
"Areas de Trabajo ..." WORKSPACE_MENU
#if (UID==0) // o ve root ou usuarios con UID=0
"Sistema" MENU
// Panel de control
+10 -10
View File
@@ -7,20 +7,20 @@
*
* <Title> is any string to be used as title. Must be enclosed with " if it
* has spaces
*
*
* SHORTCUT specifies a shortcut for that item. <Shortcut> has the
* same syntax of the shortcuts key options in the
* same syntax of the shortcuts key options in the
* $HOME/GNUstep/Defaults/WindowMaker file, such as RootMenuKey or MiniaturizeKey.
*
* You can't specify a shortcut for a MENU or OPEN_MENU entry.
*
* <Command> one of the valid commands:
*
* <Command> one of the valid commands:
* MENU - starts (sub)menu definition
* END - end (sub)menu definition
* OPEN_MENU - opens a menu from a file, pipe or directory(ies) contents
* and eventually precede each with a command.
* WORKSPACE_MENU - adds a submenu for workspace operations. Only one
* workspace_menu is allowed.
* workspace_menu is allowed.
* EXEC <program> - executes an external program
* SHEXEC <command> - executes a shell command (like gimp > /dev/null)
* EXIT - exits the window manager
@@ -53,7 +53,7 @@
* // it in current position
* OPEN_MENU file.menu
* 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.
* // The space between '|' and command itself is optional.
* OPEN_MENU | command
@@ -79,7 +79,7 @@
* optional prompt and do substitution with what you typed
* %w - substitute with XID for the current focused window
* %W - substitute with the number of the current workspace
*
*
* You can override special characters (as % and ") with the \ character:
* ex: xterm -T "\"Hello World\""
*
@@ -114,7 +114,7 @@
"Ohjeselain" EXEC xman
"Tietoja" END
"Käynnistä..." SHEXEC %a(Käynnistä,Kirjoita suoritettava komento:)
"XTerm" EXEC xterm -sb
"XTerm" EXEC xterm -sb
"Rxvt" EXEC rxvt -bg black -fg white -fn fixed
"Työtilat" WORKSPACE_MENU
"Sovellukset" MENU
@@ -127,7 +127,7 @@
"X Tiedostonhallinta" EXEC xfm
"OffiX Tiedostot" EXEC files
"LyX" EXEC lyx
"Netscape" EXEC netscape
"Netscape" EXEC netscape
"Ghostview" EXEC ghostview %a(GhostView,Kirjoita näytettävän tiedoston nimi:)
"Acrobat" EXEC /usr/local/Acrobat3/bin/acroread %a(Acrobat,Kirjoita näytettävän PDF-tiedoston nimi)
"TkDesk" EXEC tkdesk
@@ -135,7 +135,7 @@
"Editorit" MENU
"XFte" EXEC xfte
"XEmacs" SHEXEC xemacs || emacs
"XJed" EXEC xjed
"XJed" EXEC xjed
"NEdit" EXEC nedit
"Xedit" EXEC xedit
"VI" EXEC xterm -e vi
+5 -5
View File
@@ -1,6 +1,6 @@
/*
* Définition du menu de fond pour WindowMaker
*
*
* La syntaxe est:
*
* <Titre> [SHORTCUT <Raccourci>] <Commande> <Paramètres>
@@ -47,7 +47,7 @@
*
* SHOW_ALL Montre toutes les fenêtres sur le bureau
*
* HIDE_OTHERS Cache toutes les fenêtres sur le
* HIDE_OTHERS Cache toutes les fenêtres sur le
* bureau qui sont en arrière plan
*
* SAVE_SESSION Sauve la l'état courant du bureau, cela
@@ -74,7 +74,7 @@
* antérieure. Ceci n'aura aucun effet si
* "SaveSessionOnExit" est égal à "Yes".
*
* INFO_PANEL Affiche le panneau d'informations sur
* INFO_PANEL Affiche le panneau d'informations sur
* WindowMaker.
*
* LEGAL_PANEL Affiche le panneau d'informations sur
@@ -201,14 +201,14 @@
"XKill" EXEC xkill
"Sélections" EXEC xclipboard
"Utilitaires" END
"Sélection" MENU
"Copier" SHEXEC echo '%s' | wxcopy
"Envoyer à" EXEC xterm -name mail -T "Pine" -e pine %s
"Naviguer" EXEC netscape %s
"Rechercher dans le manuel" SHEXEC MANUAL_SEARCH(%s)
"Sélection" END
"Bureau" MENU
"Cacher les autres fenêtres" HIDE_OTHERS
"Montrer toutes les fenêtres" SHOW_ALL
+8 -8
View File
@@ -7,20 +7,20 @@
*
* <Titel> is elke tekenrige te brûken as titel. Moat tusken " stean at it
* spaasjes hat.
*
*
* SHORTCUT jout in fluchtoets op foar dy yngong. <Fluchtoets> hat
* deselde opmaak as de fluchtoetsopsjes yn it
* $HOME/GNUstep/Defaults/WindowMaker bestân, sa as RootMenuKey of MiniaturizeKey.
*
* Jo kinne gjin fluchtoets opjaan foar in MENU- of OPEN_MENU-ûnderdiel.
*
* <Kommando> ien fan 'e jildige kommando's:
*
* <Kommando> ien fan 'e jildige kommando's:
* MENU - begjint (sub)menubepaling
* END - beëiniget (sub)menubepaling
* OPEN_MENU - iepenet in menu út in bestân, 'pipe' of map(pen)ynhâld,
* en giet eventueel elk foarôf mei in kommando.
* WORKSPACE_MENU - foeget in submenu foar wurkromtehannelingen ta. Mar ien
* workspace_menu is tastien.
* workspace_menu is tastien.
* EXEC <programma> - fiert in ekstern programma út
* SHEXEC <kommando> - fiert in 'shell'-kommando út (sa as gimp > /dev/null)
* EXIT - slút de finsterbehearder ôf
@@ -87,7 +87,7 @@
* opsjonele oanwizing, en wurdt ferfongen troch wat jo yntype
* %w - wurdt ferfongen troch XID foar it aktuele fokust finster
* %W - wurdt ferfongen troch it nûmer fan 'e aktuele wurkromte
*
*
* Jo kinne spesjale karakters (sa as % en ") útskeakelje mei it \-teken:
* fb.: xterm -T "\"Hallo Wrâld\""
*
@@ -122,7 +122,7 @@
"Hantliedingblêder" EXEC xman
"Ynfo" END
"Utfiere..." SHEXEC %a(Utfiere,Typ út te fieren kommando:)
"XTerm" EXEC xterm -sb
"XTerm" EXEC xterm -sb
"Mozilla Firefox" EXEC firefox
"Wurkromten" WORKSPACE_MENU
"Programma's" MENU
@@ -137,12 +137,12 @@
"Rekkenblêd" EXEC oocalc
"Draw" EXEC oodraw
"Impress" EXEC ooimpress
"OpenOffice.org" END
"OpenOffice.org" END
"Tekstbewurkers" MENU
"XEmacs" EXEC xemacs
"Emacs" EXEC emacs
"XJed" EXEC xjed
"XJed" EXEC xjed
"VI" EXEC xterm -e vi
"GVIM" EXEC gvim
"NEdit" EXEC nedit
+8 -8
View File
@@ -8,7 +8,7 @@
// <Título> cadea de texto usada como o título.Ten que estar pecha entre ""
//
//
// <Comando> un comando dos seguintes :
// <Comando> un comando dos seguintes :
// MENU - escomenza a definición do (sub)menú.
// END - remata a definición do (sub)menu.
// EXEC <programa> - executa un programa externo
@@ -19,19 +19,19 @@
// REFRESH - refresca o ecritorio
// ARRANGE_ICONS - ordena os iconos do escritorio
// SHUTDOWN - asasina tódalas aplicacións (e fecha a sesión das X)
// WORKSPACE_MENU - engade un submenú para as operacións da
// WORKSPACE_MENU - engade un submenú para as operacións da
// area de traballo
// SHOW_ALL - mostra tódalas fiestras na área de traballo
// HIDE_OTHERS - oculta tódalas fiestras da area de traballo,
// excepto a que ten o foco (ou a ultima que haxa recibido o foco)
//
// <Parametros> é o programa a executar.
//
//
// ** Opcións para a liña de comando EXEC :
// %s - sustituese pola corrente seleción. Se a selección non é posible ,
// o comando é cancelado
// %w - sustituese coa corrente ID da fiestra selecionada . Se non hay
// xanelas selecionadas , non se devolve nada.
// %w - sustituese coa corrente ID da fiestra selecionada . Se non hay
// xanelas selecionadas , non se devolve nada.
//
// Pódese anular carácteres especiais (como % e ") co caracter \ :
// exemplo: xterm -T "\"Boas mundo\""
@@ -50,7 +50,7 @@
"Manual" EXEC xman
"Información" END
"Emulador Terminal" EXEC rxvt -ls -fg white -bg black -fn vga
"XJed" EXEC xjed
"XJed" EXEC xjed
"Areas de Traballo" WORKSPACE_MENU
"Aplicacións" MENU
"Gráficos" MENU
@@ -62,7 +62,7 @@
"X File Manager" EXEC xfm
"OffiX Files" EXEC files
"LyX" EXEC lyx
"Netscape" EXEC netscape
"Netscape" EXEC netscape
"Ghostview" EXEC ghostview
"Acrobat" EXEC /usr/local/Acrobat3/bin/acroread
"TkDesk" EXEC tkdesk
@@ -116,7 +116,7 @@
"Fechar" EXEC xlock -allowroot -usefirst
"Grabar Area de traballo" EXEC SAVE_WORKSPACE
"Area Traballo" END
"Sair" MENU
"Reinicializar" RESTART
"Iniciar AfterStep" RESTART afterstep
+5 -5
View File
@@ -8,7 +8,7 @@
* <Title> is any string to be used as title. Must be enclosed with " if it
* has spaces
*
* <Command> one of the valid commands:
* <Command> one of the valid commands:
* MENU - starts (sub)menu definition
* OPEN_MENU - opens a menu from a file, pipe or directory(ies) contents
* and eventually precede each with a command.
@@ -45,7 +45,7 @@
* // it in current position
* OPEN_MENU file.menu
* 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.
* // The space between '|' and command itself is optional.
* OPEN_MENU | command
@@ -101,7 +101,7 @@
"Process List" EXEC xterm -e top
"Manual Browser" EXEC xman
"עדימ" END
"XTerm" EXEC xterm -sb
"XTerm" EXEC xterm -sb
"Rxvt" EXEC rxvt -bg black -fg white -fn fixed
"הדובע יבחרמ" WORKSPACE_MENU
"םימושי" MENU
@@ -114,7 +114,7 @@
"X File Manager" EXEC xfm
"OffiX Files" EXEC files
"LyX" EXEC lyx
"פייקסטנ" EXEC netscape
"פייקסטנ" EXEC netscape
"Ghostview" EXEC ghostview %a(Enter file to view)
"Acrobat" EXEC /usr/local/Acrobat3/bin/acroread %a(Enter PDF to view)
"TkDesk" EXEC tkdesk
@@ -122,7 +122,7 @@
"םיכרוע" MENU
"XFte" EXEC xfte
"XEmacs" SHEXEC xemacs || emacs
"XJed" EXEC xjed
"XJed" EXEC xjed
"NEdit" EXEC nedit
"Xedit" EXEC xedit
"VI" EXEC xterm -e vi
+5 -5
View File
@@ -8,7 +8,7 @@
* <Title> is any string to be used as title. Must be enclosed with " if it
* has spaces
*
* <Command> one of the valid commands:
* <Command> one of the valid commands:
* MENU - starts (sub)menu definition
* OPEN_MENU - opens a menu from a file, pipe or directory(ies) contents
* and eventually precede each with a command.
@@ -45,7 +45,7 @@
* // it in current position
* OPEN_MENU file.menu
* 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.
* // The space between '|' and command itself is optional.
* OPEN_MENU | command
@@ -102,7 +102,7 @@
"Lista procesa" EXEC xterm -e top
"Pretraživač manuala" EXEC xman
"Informacije" END
"XTerm u boji" EXEC nxterm -sb
"XTerm u boji" EXEC nxterm -sb
"Rxvt" EXEC rxvt -bg black -fg white -fn fixed
"Xisp" EXEX xisp
"Radni prostori" WORKSPACE_MENU
@@ -116,7 +116,7 @@
"X File Manager" EXEC xfm
"OffiX Files" EXEC files
"LyX" EXEC lyx
"Netscape" EXEC netscape
"Netscape" EXEC netscape
"Ghostview" EXEC ghostview %a(Enter file to view)
"Acrobat" EXEC /usr/local/Acrobat3/bin/acroread %a(Enter PDF to view)
"TkDesk" EXEC tkdesk
@@ -124,7 +124,7 @@
"Editori" MENU
"XFte" EXEC xfte
"XEmacs" SHEXEC xemacs || emacs
"XJed" EXEC xjed
"XJed" EXEC xjed
"NEdit" EXEC nedit
"Xedit" EXEC xedit
"VI" EXEC xterm -e vi
+7 -7
View File
@@ -3,7 +3,7 @@
* Verzio: 0.61
*
* Horvath Szabolcs <horvathsz@penguinpowered.com> - 2000. junius
* A 0.20.3-s verziohoz keszult forditast
* A 0.20.3-s verziohoz keszult forditast
* Prew (Csanaki Csaba <prew@mail.matav.hu>) keszitette. Koszonet erte!
*
* Szintakszis:
@@ -12,14 +12,14 @@
*
* <Title> egy szoveg, amelyet cimkent kell hasznalni. Ha tartalmaz space-t,
* akkor idezojelbe ("... ...") kell tenni.
*
*
* SHORTCUT meghataroz egy shortcut-ot adott programokra. <Shortcut>-nak
* ugyanolyan megadasi szintakszisa van a
* $HOME/GNUstep/Defaults/WindowMaker file-ban, mint a RootMenuKey
* vagy a MiniaturizeKey.
*
* Nem lehet letrehozni shortcut-ot MENU vagy OPEN_MENU bejegyzesben.
*
*
* <Parancs> az itt kovetkezo utasitasok valamelyike:
* MENU - kezdi a/az (al)menudefiniciot
* END - befejezi a/az (al)menudefiniciot
@@ -104,7 +104,7 @@
* "Style" OPEN_MENU style.menu
* "Teszt" END
*/
#include "wmmacros"
"Alkalmazások" MENU
@@ -117,7 +117,7 @@
"Kézikönyv böngésző" EXEC xman
"Infó" END
"Futtatás..." SHEXEC %a(Futtatás,Írd be a futtatni kívánt programot:)
"X Terminál" EXEC xterm -sb
"X Terminál" EXEC xterm -sb
"Rxvt" EXEC rxvt -bg black -fg white -fn fixed
"Gnome terminál" EXEC gnome-terminal --background black --foreground white --font -misc-fixed-medium-r-normal--20-200-75-75-c-100-iso8859-1
"Munkafelületek" WORKSPACE_MENU
@@ -131,7 +131,7 @@
"X File Manager" EXEC xfm
"OffiX Files" EXEC files
"LyX" EXEC lyx
"Netscape" EXEC netscape
"Netscape" EXEC netscape
"Ghostview" EXEC ghostview %a(GhostView,Kérem a fájl nevét)
"Acrobat" EXEC /usr/local/Acrobat3/bin/acroread %a(Acrobat,Kérem a PDF fájl nevét)
"TkDesk" EXEC tkdesk
@@ -139,7 +139,7 @@
"Szerkesztők" MENU
"XFte" EXEC xfte
"XEmacs" SHEXEC xemacs || emacs
"XJed" EXEC xjed
"XJed" EXEC xjed
"NEdit" EXEC nedit
"Xedit" EXEC xedit
"VI" EXEC xterm -e vi
+9 -9
View File
@@ -7,20 +7,20 @@
*
* <Title> is any string to be used as title. Must be enclosed with " if it
* has spaces
*
*
* SHORTCUT specifies a shortcut for that item. <Shortcut> has the
* same syntax of the shortcuts key options in the
* same syntax of the shortcuts key options in the
* $HOME/GNUstep/Defaults/WindowMaker file, such as RootMenuKey or MiniaturizeKey.
*
* You can't specify a shortcut for a MENU or OPEN_MENU entry.
*
* <Command> one of the valid commands:
*
* <Command> one of the valid commands:
* MENU - starts (sub)menu definition
* END - end (sub)menu definition
* OPEN_MENU - opens a menu from a file, pipe or directory(ies) contents
* and eventually precede each with a command.
* WORKSPACE_MENU - adds a submenu for workspace operations. Only one
* workspace_menu is allowed.
* workspace_menu is allowed.
* EXEC <program> - executes an external program
* SHEXEC <command> - executes a shell command (like gimp > /dev/null)
* EXIT - exits the window manager
@@ -87,7 +87,7 @@
* optional prompt and do substitution with what you typed
* %w - substitute with XID for the current focused window
* %W - substitute with the number of the current workspace
*
*
* You can override special characters (as % and ") with the \ character:
* ex: xterm -T "\"Hello World\""
*
@@ -122,7 +122,7 @@
"Manual Browser" EXEC xman
"Info" END
"Run..." SHEXEC %a(Run,Type command to run:)
"XTerm" EXEC xterm -sb
"XTerm" EXEC xterm -sb
"Mozilla Firefox" EXEC firefox
"Workspaces" WORKSPACE_MENU
"Applications" MENU
@@ -137,12 +137,12 @@
"Spreadsheet" EXEC oocalc
"Draw" EXEC oodraw
"Impress" EXEC ooimpress
"OpenOffice.org" END
"OpenOffice.org" END
"Editors" MENU
"XEmacs" EXEC xemacs
"Emacs" EXEC emacs
"XJed" EXEC xjed
"XJed" EXEC xjed
"VI" EXEC xterm -e vi
"GVIM" EXEC gvim
"NEdit" EXEC nedit
+11 -11
View File
@@ -8,8 +8,8 @@
// <Titolo> e' la stringa usata per il titolo. Deve essere racchiusa dagli apici
// se contiene degli spazi
//
// <Comando> uno dei seguenti comandi:
// MENU - inizio della definizione di un sottomenu
// <Comando> uno dei seguenti comandi:
// MENU - inizio della definizione di un sottomenu
// END - fine della definizione di un sottomenu
// EXEC <programma> - esegue un programma
// SHEXEC <command> - executes a shell command (like gimp > /dev/null)
@@ -17,8 +17,8 @@
// RESTART [<window manager>] - reinizializza WindowMaker o lancia un altro
// window manager
// REFRESH - ridisegna l'area di lavoro
// ARRANGE_ICONS - riordina le icone sull'area di lavoro
// SHUTDOWN - uccide tutti i clienti (e chiude la sessione X window)
// ARRANGE_ICONS - riordina le icone sull'area di lavoro
// SHUTDOWN - uccide tutti i clienti (e chiude la sessione X window)
// WORKSPACE_MENU - aggiunge un submenu per operazioni sull'area di lavoro
// SHOW_ALL - mostra tutte le finestre dell'area di lavoro
// HIDE_OTHERS -nasconde tutte le finestre dell'area di lavoro eccetto
@@ -29,13 +29,13 @@
// ** Opzioni per la linea di comando in EXEC:
// %s - sostituisce con la selezione corrente. Se non e' disponibile nessuna
// selezione, il comando e' annullato
// %w - sostituisce con l'identificativo della finestra correntemente
// selezionata. Se nessuna finestra e' selezionata, viene restituito vuoto
//
// %w - sostituisce con l'identificativo della finestra correntemente
// selezionata. Se nessuna finestra e' selezionata, viene restituito vuoto
//
// Si possono generare caratteri speciali (come % e ") con il carattere \ :
// esempio: xterm -T "\"ciao mondo\"" (ndt banale, no? )
//
// Ciascun comando MENU deve avere un comando END alla fine.
// Ciascun comando MENU deve avere un comando END alla fine.
// Vedere esempio:
@@ -50,7 +50,7 @@
"Ricerca Manuali" EXEC xman
"Informazioni" END
"XTerm" SHEXEC xterm -sb || color-xterm -sb || xterm -sb
"XJed" EXEC xjed
"XJed" EXEC xjed
"Area di lavoro" WORKSPACE_MENU
"Applicazioni" MENU
"Grafica" MENU
@@ -62,7 +62,7 @@
"X File Manager" EXEC xfm
"OffiX Files" EXEC files
"LyX" EXEC lyx
"Netscape" EXEC netscape
"Netscape" EXEC netscape
"Ghostview" EXEC ghostview %a(Ghostview)
"XDvi" EXEC xdvi %a(XDvi)
"Acrobat" EXEC /usr/local/Acrobat3/bin/acroread %a(Acrobat)
@@ -119,7 +119,7 @@
#endif
"Salva area di lavoro" EXEC SAVE_WORKSPACE
"Area di lavoro" END
"Uscire" MENU
"Restart" RESTART
"Avviare AfterStep" RESTART afterstep
+7 -7
View File
@@ -7,9 +7,9 @@
*
* <Title> とはメニューのタイトルに使用される文字列です。スペースを含む
* 場合には " で囲んでください。
*
*
* <Command> は以下のものが使えます:
*
* <Command> は以下のものが使えます:
* MENU - メニュー(サブメニュー)の定義の開始を示します。
* OPEN_MENU - ファイル,パイプ,ディレクトリの内容(それぞれのファイルの
* 前処理に指定したコマンドを使用することも可能)から
@@ -27,7 +27,7 @@
* SHOW_ALL - ハイドされていた全てのウィンドウを表示します。
* HIDE_OTHERS - ワークスペース上の現在あるいは一番最近フォーカス
* されたウィンドウを除く全てのウィンドウをハイドします。
*
*
* SAVE_SESSION - デスクトップの現在の状態をセーブします。現在の状態と
* とは、全ての実行中のアプリケーション、それらのヒント
* (ジオメトリ,位置,どのワークスペースに存在するか,
@@ -88,7 +88,7 @@
* "KTerm" EXEC kterm
* // /usr/openwin/bin中のファイルでサブメニューを作る
* "XView apps" OPEN_MENU "/usr/openwin/bin"
* // 異なるディレクトリのX11アプリケーションを表示
* // 異なるディレクトリのX11アプリケーションを表示
* "X11 apps" OPEN_MENU /usr/X11/bin $HOME/bin/X11
* // 背景の画像をセットする。
* "背景" OPEN_MENU $HOME/images /usr/share/images WITH wmsetbg -u -t
@@ -107,7 +107,7 @@
"プロセス一覧" EXEC xterm -e top
"マニュアルブラウザ" EXEC xman
"情報" END
"KTerm" EXEC kterm -sb
"KTerm" EXEC kterm -sb
"Rxvt" EXEC rxvt -bg black -fg white
"ワークスペース" WORKSPACE_MENU
"アプリケーション" MENU
@@ -120,7 +120,7 @@
"X File Manager" EXEC xfm
"OffiX Files" EXEC files
"LyX" EXEC lyx
"Netscape" EXEC netscape
"Netscape" EXEC netscape
"Ghostview" EXEC ghostview %a(Enter file to view)
"Acrobat" EXEC /usr/local/Acrobat3/bin/acroread %a(Enter PDF to view)
"TkDesk" EXEC tkdesk
@@ -129,7 +129,7 @@
"Mule" EXEC mule
"XFte" EXEC xfte
"XEmacs" SHEXEC xemacs || emacs
"XJed" EXEC xjed
"XJed" EXEC xjed
"NEdit" EXEC nedit
"Xedit" EXEC xedit
"VI" EXEC kterm -e vi
+15 -15
View File
@@ -1,7 +1,7 @@
/*
* Windowmaker를 위한 루트 메뉴 정의
* Windowmaker를 위한 루트 메뉴 정의
*
* 사용법:
* 사용법:
*
* <Title> [SHORTCUT <Shortcut>] <Command> <Parameters>
*
@@ -14,13 +14,13 @@
*
* <Command> 사용가능한 명령어들
* MENU - (하부)메뉴 정의를 시작한다.
* END - (하부)메뉴 정의를 마친다.
* END - (하부)메뉴 정의를 마친다.
* OPEN_MENU - 파일이나 파이프 혹은 디렉토리 내용으로 부터 메뉴를 열고
* 명령어를 실행한다.
* WORKSPACE_MENU - 작업공간 제어에 관한 하부 메뉴를 추가한다.
* EXEC <program> - 외부 프로그램을 실행한다.
* EXEC <program> - 외부 프로그램을 실행한다.
* SHEXEC <command> - 쉘 명령을 실행한다. (예제: gimp > /dev/null)
* EXIT - 윈도우 매니저를 종료시킨다.
* EXIT - 윈도우 매니저를 종료시킨다.
* RESTART [<window manager>] - Windowmaker를 다시시작하거나 다른 윈도우
* 관리자를 실행시킨다.
* REFRESH - 화면을 다시 그린다.
@@ -34,14 +34,14 @@
* 화면상의 위치, 작업공간 번호, 그것들이 실행된 dock이나
* 클립 그리고 프로그램이 아이콘화되었는지 shade 형태
* 인지 혹은 숨겨졌는지의 여부이다. 또한 사용자가 현재
* 작업중인 워크스페이스도 저장된다. 이 모든 정보들은
* 또다른 SAVE_SESSION이나 CLEAR_SEEION이 사용되기 전까지
* 매번 윈도우메이커가 실행될 때마다 복원된다. 만일
* 작업중인 워크스페이스도 저장된다. 이 모든 정보들은
* 또다른 SAVE_SESSION이나 CLEAR_SEEION이 사용되기 전까지
* 매번 윈도우메이커가 실행될 때마다 복원된다. 만일
* SaveSession OnExit = Yes; 로 설정되어 있으면 매번 윈도우
* 메이커가 종료될 때마다 자동적으로 세션의 내용을 저장하고
* SAVE_SESSION 이나 CLEAR_SESSOIN 값은 무시된다.
* CLEAR_SESSION - 이미 정장된 세션을 지운다. 이것은 SaveSessionOnExit가
* 참인 경우에 효과를 미치지 않는다.
* SAVE_SESSION 이나 CLEAR_SESSOIN 값은 무시된다.
* CLEAR_SESSION - 이미 정장된 세션을 지운다. 이것은 SaveSessionOnExit가
* 참인 경우에 효과를 미치지 않는다.
* INFO - 정보 패널을 보여준다.
*
* OPEN_MENU syntax:
@@ -65,9 +65,9 @@
* OPEN_MENU [options] /some/dir [/some/other/dir ...] WITH command -options
* 옵션: -noext 파일 이름의 확장자를 없애고 보여준다.
*
* <Parameters> 는 실행할 프로그램이다.
* <Parameters> 는 실행할 프로그램이다.
*
* ** EXEC의 명령어 라인에 대한 옵션:
* ** EXEC의 명령어 라인에 대한 옵션:
* %s - 현재 선택된 내용으로 바꾼다.
* %a(title[,prompt]) - 입력 상자를 열고 사용자가 입력한 것으로
* 메시지를 바꾼다.
@@ -81,7 +81,7 @@
*
* 각각의 MENU 문은 반드시 END와 쌍을 이루어야 한다.
*
* 예제:
* 예제:
*
* "Test" MENU
* "XTerm" EXEC xterm
@@ -124,7 +124,7 @@
"하 이 텔" EXEC hanterm -T 하이텔 -n 하이텔 -e ztelnet home.hitel.net
"천 리 안" EXEC hanterm -T 천리안 -n 천리안 -e ztelnet chonllian.net
"가 우" SHEXEC gau || gaui
"네트워크" END
"네트워크" END
"편 집 기" MENU
"VIM" EXEC hanterm -T VIM -n VIM -e vim
"이맥스" EXEC emacs
+8 -8
View File
@@ -7,20 +7,20 @@
*
* <Titel> is elke tekenreeks te gebruiken als titel. Moet tussen " staan als het
* spaties heeft.
*
*
* SHORTCUT geeft een sneltoets op voor die ingang. <Sneltoets> heeft
* dezelfde opmaak als de sneltoetsopties in het
* $HOME/GNUstep/Defaults/WindowMaker bestand, zoals RootMenuKey of MiniaturizeKey.
*
* U kunt geen sneltoets opgeven voor een MENU- of OPEN_MENU-onderdeel.
*
* <Commando> een van de geldige commando's:
*
* <Commando> een van de geldige commando's:
* MENU - begint (sub)menubepaling
* END - beëindigt (sub)menubepaling
* OPEN_MENU - opent een menu uit een bestand, 'pipe' of map(pen)inhoud,
* en gaat eventueel elk vooraf met een commando.
* WORKSPACE_MENU - voegt een submenu voor werkruimtehandelingen toe. Slechts één
* workspace_menu is toegestaan.
* workspace_menu is toegestaan.
* EXEC <programma> - voert een extern programma uit
* SHEXEC <commando> - voert een 'shell'-commando uit (zoals gimp > /dev/null)
* EXIT - sluit de vensterbeheerder af
@@ -87,7 +87,7 @@
* optionele aanwijzing, en wordt vervangen door wat u intypt
* %w - wordt vervangen door XID voor het actuele gefocust venster
* %W - wordt vervangen door het nummer van de actuele werkruimte
*
*
* U kunt speciale karakters (zoals % en ") uitschakelen met het \-teken:
* vb.: xterm -T "\"Hallo Wereld\""
*
@@ -122,7 +122,7 @@
"Handleidingbrowser" EXEC xman
"Info" END
"Uitvoeren..." SHEXEC %a(Uitvoeren,Typ uit te voeren commando:)
"XTerm" EXEC xterm -sb
"XTerm" EXEC xterm -sb
"Mozilla Firefox" EXEC firefox
"Werkruimten" WORKSPACE_MENU
"Programma's" MENU
@@ -137,12 +137,12 @@
"Rekenblad" EXEC oocalc
"Draw" EXEC oodraw
"Impress" EXEC ooimpress
"OpenOffice.org" END
"OpenOffice.org" END
"Tekstbewerkers" MENU
"XEmacs" EXEC xemacs
"Emacs" EXEC emacs
"XJed" EXEC xjed
"XJed" EXEC xjed
"VI" EXEC xterm -e vi
"GVIM" EXEC gvim
"NEdit" EXEC nedit
+10 -10
View File
@@ -24,14 +24,14 @@
* ARRANGE_ICONS - rydder opp i ikonene dine på skjermbildet.
* SHUTDOWN - Stenger ned alle X klienter og avslutter X tjeneren
* SHOW ALL - Viser alle skjulte vinduer på denne skjermen
* HIDE_OTHERS - skjuler alle vinduer på denne skjermen som ikke har
* HIDE_OTHERS - skjuler alle vinduer på denne skjermen som ikke har
* fokus.
* SAVE_SESSION - lagrer desktop'en din som den ser ut. Dette inkluderer
* alle applikasjoner som kjører (størrelse, posisjon,
* arbeidsområde de er på, hvilken dock/binders de ble
* startet fra, og om de er minimert, shadet eller
* skjult. Lagrer også hvilket arbeidsområde brukeren
* er på. Alt vil bli startet opp igjen hver gang
* er på. Alt vil bli startet opp igjen hver gang
* windowmaker blir startet, fram til til SAVE_SESSION
* blir kalt igjen, eller CLEAR_SESSION blir kalt.
* Hvis SaveSessionOnExit = Yes; i WindowMaker domene
@@ -40,10 +40,10 @@
* og også CLEAR_SESSION (Se under).
* CLEAR_SESSION - resetter lagrede settinging fra SAVE_SESSION. Vil
* ikke ha noen effekt hvis SaveSessionOnExit er satt.
*
*
* OPEN_MENU syntaks:
* 1. Fil Meny beskrivelse
* // åpner fil.menu som må innholde en gyldig meny fil, og setter den
* // åpner fil.menu som må innholde en gyldig meny fil, og setter den
* // inn her.
* OPEN_MENU fil.menu
* 2. Pipe meny beskrivelse
@@ -56,7 +56,7 @@
* // katalogene og alle kjørbare filer i dem, sortert alfabetisk.
* OPEN_MENU /en/katalog [/en/annen/katalog ....]
* 4. Beskrivelse av katalog med kommando
* // Åpner en eller flere kataloger, og konstruerer en meny med alle
* // Åpner en eller flere kataloger, og konstruerer en meny med alle
* // katalogene og alle lesbare filer i dem. Setter kommando forran
* // hver av dem.
* OPEN_MENU /en/katalog [/en/annen/katalog ....] WITH kommando -args
@@ -72,7 +72,7 @@
*
* Du kan bruke \ tegnet for å skrive spesialtegn som vanlige bokstaver:
* eksempel: xterm -T "\"Hallo Verden\""
*
*
*
* Du kan også bruke spesialsekvenser som i C, f.eks \n
*
@@ -104,7 +104,7 @@
"Prosess Liste" EXEC xterm -e top
"Manual leser" EXEC stepman
"Info" END
"XTerm" EXEC xterm -sb
"XTerm" EXEC xterm -sb
"Rxvt" EXEC rxvt -bg black -fg white -fn fixed
"Arbeids-Områder" WORKSPACE_MENU
"Applikasjoner" MENU
@@ -117,7 +117,7 @@
"X Fil Behandler" EXEC xfm
"OffiX Files" EXEC files
"LyX" EXEC lyx
"Netscape" EXEC netscape
"Netscape" EXEC netscape
"Ghostview" EXEC ghostview %a(Navnet på fila du vil se)
"Acrobat" EXEC /usr/local/Acrobat3/bin/acroread %a(Skriv inn PDF\'en du ønsker)
"TkDesk" EXEC tkdesk
@@ -125,7 +125,7 @@
"Tekst Redigering" MENU
"XFte" EXEC xfte
"XEmacs" SHEXEC xemacs || emacs
"XJed" EXEC xjed
"XJed" EXEC xjed
"NEdit" EXEC nedit
"Xedit" EXEC xedit
"VI" EXEC xterm -e vi
@@ -188,7 +188,7 @@
"Avslutt" MENU
"Restart" RESTART
"Start Afterstep" RESTART afterstep
"Avslutt WindowMaker..." EXIT
"Avslutt WindowMaker..." EXIT
"Avslutt X11..." SHUTDOWN
"Avslutt" END
"Applikasjoner" END
+25 -25
View File
@@ -8,21 +8,21 @@
*
* <Tytuł> Tytuł może być dowolnym ciągiem znaków. Jeśli będą w nim występować
* spacje umieśc go w cudzysłowie np. "Tytuł ze spacją"
*
*
* SHORTCUT Definiowanie skrótu.
* <Skrót> Nazwa rodzaju skrótu umieszczonego w pliku
* $HOME/GNUstep/Defaults/WindowMaker, tak jak RootMenuKey
* $HOME/GNUstep/Defaults/WindowMaker, tak jak RootMenuKey
* lub MiniaturizeKey.
*
* Skróty mogą występować w sekcji MENU lub OPEN_MENU .
*
* <Komenda> jedna z dostępnych komend:
* MENU - rozpoczęcie definicji (pod)menu
* END - zakończenie definicji (pod)menu
*
* <Komenda> jedna z dostępnych komend:
* MENU - rozpoczęcie definicji (pod)menu
* END - zakończenie definicji (pod)menu
* OPEN_MENU - generowanie podmenu na podstawie podanego katalogu,
* umieszczając w nim pliki wykonywalne i podkatalogi.
* WORKSPACE_MENU - Dodanie podmenu zawierającego aktywne pulpity. Tylko
* jedno workspace_menu jest potrzebne.
* jedno workspace_menu jest potrzebne.
* EXEC <program> - wykonanie jakiegokolwiek programu
* EXIT - wyjście z menadżera okien
* RESTART [<window manager>] - restart WindowMakera albo start innego
@@ -51,12 +51,12 @@
* ** Opcje w lini komend EXEC:
* %s - znak jest zastepowany przez text znajdujacy sie w ,,schowku''
* %a(tytuł[,komunikat]) - otwiera dodatkowe okno o tytule tytuł, komunikacie
* komunikat i czeka na podanie parametrów, które
* komunikat i czeka na podanie parametrów, które
* zostaną wstawione zamiast %a. Niestety nie udalo mi
* się uzyskać polskich fontów w tej pocji :(
* się uzyskać polskich fontów w tej pocji :(
* %w - znak jest zastepowany przez XID aktywnego okna
* %W - znak jest zastepowany przez numer aktywnego pulpitu
*
*
* Aby używać specjalnych znaków ( takich jak % czy " ) należy poprzedzic je znakiem \
* np. :xterm -T "\"Witaj Świecie\""
*
@@ -79,7 +79,7 @@
* "Test" END
*
* Jeżeli zamiast polskich fontów jakieś krzaczki należy wyedetować pliki
* $HOME/GNUstep/Defaults/WMGLOBAL i $HOME/GNUstep/Defaults/WindowMaker,
* $HOME/GNUstep/Defaults/WMGLOBAL i $HOME/GNUstep/Defaults/WindowMaker,
* lub wejść w menu Konfiguracja.
* Aby uzyskać polskie znaki należy uzupełnić definicje fontów.
* np. zamienić
@@ -92,10 +92,10 @@
*
* i wszędzie tam gdzie występuje podobna definicja.
*/
#include "wmmacros"
#define ULUB_EDYTOR vi
#define ULUB_EDYTOR vi
/* Jeśli nie lubisz edytora vi zmień na swój ulubiony edytor */
#define ULUB_TERM xterm
/* A tutaj ustaw swój ulubiony terminal */
@@ -109,18 +109,18 @@
"Lista Procesów" EXEC ULUB_TERM -T "Lista Procesów" -e top
"Przeglądarka Manuali" EXEC xman
"Informacja" END
"Konfiguracja" MENU
"Konfiguracja" MENU
"Edycja menu" EXEC ULUB_TERM -T "Edycja menu" -e ULUB_EDYTOR $HOME/GNUstep/Library/WindowMaker/menu
"Ustawienie fontów" EXEC ULUB_TERM -T "Ustawienie fontów" -e ULUB_EDYTOR $HOME/GNUstep/Defaults/WMGLOBAL
"Konfiguracja" EXEC ULUB_TERM -T "Konfiguracja" -e ULUB_EDYTOR $HOME/GNUstep/Defaults/WindowMaker
"Konfiguracja" END
"Uruchom..." EXEC %a(Uruchom,Wpisz komende do uruchomienia:)
"Terminal" EXEC ULUB_TERM -T "Mój ulubiony terminal" -sb
"Terminal" EXEC ULUB_TERM -T "Mój ulubiony terminal" -sb
"Edytor" EXEC ULUB_TERM -T "Moj ulubiony edytor" -e ULUB_EDYTOR %a(Edytor,Podaj plik do edycji:)
"Pulpity" WORKSPACE_MENU
"Aplikacje" MENU
"Grafika" MENU
"Gimp" EXEC gimp >/dev/null
@@ -145,15 +145,15 @@
"X Gnu debbuger" EXEC xxgdb
"Xwpe" EXEC xwpe
"Aplikacje" END
"Internet" MENU
"Przeglądarki" MENU
"Netscape" EXEC netscape
"Netscape" EXEC netscape
"Arena" EXEC arena
"Lynx" EXEC ULUB_TERM -e lynx %a(Lynx,Podaj URL:)
"Przeglądarki" END
"Programy pocztowe" MENU
"Pine" EXEC ULUB_TERM -T "Program pocztowy Pine" -e pine
"Pine" EXEC ULUB_TERM -T "Program pocztowy Pine" -e pine
"Elm" EXEC ULUB_TERM -T "Program pocztowy Elm" -e elm
"Xmh" EXEC xmh
"Programy pocztowe" END
@@ -172,20 +172,20 @@
"Editory" MENU
"XFte" EXEC xfte
"XEmacs" EXEC xemacs || emacs
"XJed" EXEC xjed
"XJed" EXEC xjed
"NEdit" EXEC nedit
"Xedit" EXEC xedit
"Editres" EXEC editres
"VI" EXEC ULUB_TERM -e vi
"Editory" END
"Dźwięk" MENU
"CDPlay" EXEC workbone
"Xmcd" EXEC xmcd 2> /dev/null
"Xplaycd" EXEC xplaycd
"Xmixer" EXEC xmixer
"Dźwięk" END
"Gry" MENU
"Maze" EXEC maze
"Karty " EXEC spider
@@ -202,7 +202,7 @@
"xboing" EXEC xboing -sound
"XBill" EXEC xbill
"Gry" END
"Użytki" MENU
"Kalkulator" EXEC xcalc
"Zegarek" EXEC xclock
+13 -13
View File
@@ -6,12 +6,12 @@
* <Title> [SHORTCUT <tecla de atalho>] <Comando> <Parâmetros>
*
* <Title> é qualquer texto a ser usado como título. Deve estar entre aspas "
*
* SHORTCUT especifica uma tecla de atalho para o item. <tecla de atalho>
*
* SHORTCUT especifica uma tecla de atalho para o item. <tecla de atalho>
* tem a mesma sintaxe das teclas de atalho em $HOME/GNUstep/Defaults/WindowMaker
*
* Não é possível especificar teclas de atalho para MENU ou OPEN_MENU
*
*
* <Command> é um dos seguintes comandos:
* MENU - inicia definição de um (sub)menu
* END - termina definição de um (sub)menu
@@ -22,7 +22,7 @@
* EXEC <programa> - executa um programa
* EXIT - termina o gerenciador de janelas
* SHEXEC <command> - executa comando de shell (ex.: gimp > /dev/null)
* RESTART [<gerenciador de janelas>] - reinicia o WindowMaker ou inicia
* RESTART [<gerenciador de janelas>] - reinicia o WindowMaker ou inicia
* outro gerenciador de janelas
* REFRESH - força repintagem da área de trabalho
* ARRANGE_ICONS - arruma os ícones na área de trabalho
@@ -33,13 +33,13 @@
* SAVE_SESSION - salva o estado da área de trabalho, o que inclui
* todos os programas em execução, informações relativas
* a posição, tamanho, área de trabalho onde se localizam,
* o dock ou clip de onde foi lançado e se a janela está
* o dock ou clip de onde foi lançado e se a janela está
* miniaturizada, shadeada ou hideada. Também salva qual a área
* de trabalho atual. Todas as informações serão restauradas
* até que se use o comando SAVE_SESSION de novo ou CLEAR_SESSION.
* Se SaveSessionOnExit = Yes; estiver definido no domínio
* WindowMaker ($HOME/GNUstep/Defaults/WindowMaker), então o
* salvamento da sessão é feito automaticamente quando o
* Se SaveSessionOnExit = Yes; estiver definido no domínio
* WindowMaker ($HOME/GNUstep/Defaults/WindowMaker), então o
* salvamento da sessão é feito automaticamente quando o
* WindowMaker finalizar, apagando quaisquer SAVE_SESSION ou
* CLEAR_SESSION usados anteriormente.
* CLEAR_SESSION - apaga uma sessão salvada anteriormente. Este comando
@@ -68,7 +68,7 @@
* // usando o comando para executar cada arquivo.
*
* OPEN_MENU [-noext] /algum/dir [/algum/outro/dir ...] WITH comando -opções
*
*
*
* <Parâmetros> é o programa a ser executado.
*
@@ -95,7 +95,7 @@
* "X11 apps" OPEN_MENU /usr/X11/bin $HOME/bin/X11
* // faz um submenu de papéis de parede
* "Papel de Parede" OPEN_MENU $HOME/imagens /usr/share/imagens WITH wmsetbg -u -t
* // insere o menu meu.menu
* // insere o menu meu.menu
* "Style" OPEN_MENU meu.menu
* "Test" END
*/
@@ -111,7 +111,7 @@
"Lista de Processos" EXEC xterm -e top
"Leitor de Manual" EXEC xman
"Informações" END
"XTerm" EXEC xterm -sb
"XTerm" EXEC xterm -sb
"Rxvt" EXEC rxvt -bg black -fg white -fn fixed
"Áreas de Trabalho" WORKSPACE_MENU
"Aplicações" MENU
@@ -124,7 +124,7 @@
"X File Manager" EXEC xfm
"OffiX Files" EXEC files
"LyX" EXEC lyx
"Netscape" EXEC netscape
"Netscape" EXEC netscape
"Ghostview" EXEC ghostview %a(Enter file to view)
"Acrobat" EXEC /usr/local/Acrobat3/bin/acroread %a(Enter PDF to view)
"TkDesk" EXEC tkdesk
@@ -132,7 +132,7 @@
"Editores" MENU
"XFte" EXEC xfte
"XEmacs" SHEXEC xemacs || emacs
"XJed" EXEC xjed
"XJed" EXEC xjed
"NEdit" EXEC nedit
"Xedit" EXEC xedit
"VI" EXEC xterm -e vi
+10 -10
View File
@@ -7,20 +7,20 @@
*
* <Title> is any string to be used as title. Must be enclosed with " if it
* has spaces
*
*
* SHORTCUT specifies a shortcut for that item. <Shortcut> has the
* same syntax of the shortcuts key options in the
* same syntax of the shortcuts key options in the
* $HOME/GNUstep/Defaults/WindowMaker file, such as RootMenuKey or MiniaturizeKey.
*
* You can't specify a shortcut for a MENU or OPEN_MENU entry.
*
* <Command> one of the valid commands:
*
* <Command> one of the valid commands:
* MENU - starts (sub)menu definition
* END - end (sub)menu definition
* OPEN_MENU - opens a menu from a file, pipe or directory(ies) contents
* and eventually precede each with a command.
* WORKSPACE_MENU - adds a submenu for workspace operations. Only one
* workspace_menu is allowed.
* workspace_menu is allowed.
* EXEC <program> - executes an external program
* SHEXEC <command> - executes a shell command (like gimp > /dev/null)
* EXIT - exits the window manager
@@ -53,7 +53,7 @@
* // it in current position
* OPEN_MENU file.menu
* 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.
* // The space between '|' and command itself is optional.
* OPEN_MENU | command
@@ -79,7 +79,7 @@
* optional prompt and do substitution with what you typed
* %w - substitute with XID for the current focused window
* %W - substitute with the number of the current workspace
*
*
* You can override special characters (as % and ") with the \ character:
* ex: xterm -T "\"Hello World\""
*
@@ -114,7 +114,7 @@
"Navigator de Pagini Man" EXEC xman
"Informaţii" END
"Execută..." SHEXEC %a(Execută,Introduceţi o comandă:)
"XTerm" EXEC xterm -sb
"XTerm" EXEC xterm -sb
"Rxvt" EXEC rxvt -bg black -fg white -fn -misc-fixed-medium-*-*--*-*-*-*-*-*-iso8859-2 -fb -misc-fixed-medium-*-*--*-*-*-*-*-*-iso8859-2
"Spaţii de Lucru" WORKSPACE_MENU
"Aplicaţii" MENU
@@ -127,7 +127,7 @@
"Manager de Fişiere" EXEC xfm
"Fisiere OffiX" EXEC files
"LyX" EXEC lyx
"Netscape" EXEC netscape
"Netscape" EXEC netscape
"Ghostview" EXEC ghostview %a(GhostView,Enter file to view)
"Acrobat" EXEC /usr/local/Acrobat3/bin/acroread %a(Acrobar,Enter PDF to view)
"TkDesk" EXEC tkdesk
@@ -135,7 +135,7 @@
"Editoare" MENU
"XFte" EXEC xfte
"XEmacs" SHEXEC xemacs || emacs
"XJed" EXEC xjed
"XJed" EXEC xjed
"NEdit" EXEC nedit
"Xedit" EXEC xedit
"VI" EXEC xterm -e vi
+12 -12
View File
@@ -8,9 +8,9 @@
* <Имя> - любая строка для заголовка меню. Должна быть заключена в парные ",
* если содержит пробелы
*
* <Команда> одна из следующего набора команд:
* <Команда> одна из следующего набора команд:
* MENU - начинает определение (под)меню
* OPEN_MENU - считывает меню из файла или содержания каталога
* OPEN_MENU - считывает меню из файла или содержания каталога
* END - заканчивает определение (под)меню
* WORKSPACE_MENU - добавляет подменю для операций с Рабочим местом
* EXEC <program> - выполняет внешнюю программу
@@ -18,7 +18,7 @@
* EXIT - завершает работу менеджера окон
* RESTART [<window manager>] - перезапускает WindowMaker или запускает
* другой менеджер окон
* REFRESH - обновляет видимое пространство
* REFRESH - обновляет видимое пространство
* ARRANGE_ICONS - упорядочивает значки Рабочего места
* SHUTDOWN - убивает все приложения ( и завершает сессию X)
* SHOW_ALL - показывает все окна Рабочего места
@@ -29,16 +29,16 @@
*
* ** Опции для командной строки в EXEC:
* %s - подтановка текущего выделения
* %a(message) - открывает окно ввода с сообщением и выполняет подстановку
* %a(message) - открывает окно ввода с сообщением и выполняет подстановку
* набранного
* %w - заменить на XID окна, имеющего фокус в данный момент
*
* Вы можете избежать специальной интерпретации знаков ( таких как % и ") с
* Вы можете избежать специальной интерпретации знаков ( таких как % и ") с
* помощью знака \ : Напр.: xterm -T "\"Hello World\""
*
* Вы можете также использовать escape-последовательности, как \n
*
* Каждое предложение MENU должно иметь одно соответствующее предложение END
* Каждое предложение MENU должно иметь одно соответствующее предложение END
* в конце определения.
* Пример:
*
@@ -61,9 +61,9 @@
"Список Процессов" EXEC xterm -e top
"Просмотр Руководств" EXEC xman
"Информация" END
"XTerm" EXEC xterm -sb
"XTerm" EXEC xterm -sb
"Rxvt" EXEC rxvt -bg black -fg white -fn fixed
"XJed" EXEC xjed
"XJed" EXEC xjed
"Рабочие места" WORKSPACE_MENU
"Приложения" MENU
"Графические" MENU
@@ -75,14 +75,14 @@
"Менеджер файлов X" EXEC xfm
"OffiX Files" EXEC files
"LyX" EXEC lyx
"Netscape" EXEC netscape
"Netscape" EXEC netscape
"Ghostview" EXEC ghostview %a(Enter file to view)
"Acrobat" EXEC /usr/local/Acrobat3/bin/acroread %a(Enter PDF to view)
"TkDesk" EXEC tkdesk
"Приложения" END
"Редакторы" MENU
"XEmacs" SHEXEC xemacs || emacs
"XJed" EXEC xjed
"XJed" EXEC xjed
"NEdit" EXEC nedit
"Xedit" EXEC xedit
"VI" EXEC xterm -e vi
@@ -119,7 +119,7 @@
"Рабочее место" END
"Внешний вид" MENU
/* "Темы" OPEN_MENU themes.menu
/* "Темы" OPEN_MENU themes.menu
*/
"Фон" MENU
"Однотонный" MENU
@@ -141,7 +141,7 @@
"Выход" MENU
"Перезапустить" RESTART
"Запустить Afterstep" RESTART afterstep
"Завершить работу..." EXIT
"Завершить работу..." EXIT
"Завершить сессию..." SHUTDOWN
"Выход" END
"Приложения" END
+6 -6
View File
@@ -7,13 +7,13 @@
*
* <Titel> är en sträng som du vill använda som titel i menyn. Strängen
* måste omslutas med " om den innehåller mellanslag.
*
*
* SHORTCUT anger en genväg för det menyalternativet. <Genväg> har likadan
* syntax som genvägarna i filen $HOME/GNUStep/Defaults/WindowMaker.
*
* Man kan inte ange en genväg för kommandona MENU och OPEN_MENU.
*
* <Kommando> kan vara ett av följande:
*
* <Kommando> kan vara ett av följande:
* MENU - börjar (under)meny definition.
* END - avslutar (under)meny definition.
* OPEN_MENU - öppnar en meny från en fil, pipe eller innehållet av
@@ -110,7 +110,7 @@
"Processlista" EXEC xterm -e top
"Manualläsare" EXEC xman
"Info" END
"XTerm" EXEC xterm -sb
"XTerm" EXEC xterm -sb
"Rxvt (fixed)" EXEC rxvt -bg black -fg white -fn fixed
"Rxvt (9x15)" EXEC rxvt -bg black -fg white -fn 9x15
"Arbetsbord" WORKSPACE_MENU
@@ -124,7 +124,7 @@
"X Filhanterare" EXEC xfm
"OffiX Files" EXEC files
"LyX" EXEC lyx
"Netscape" EXEC netscape
"Netscape" EXEC netscape
"Ghostview" EXEC ghostview %a(Enter file to view)
"Acrobat" EXEC /usr/local/Acrobat3/bin/acroread %a(Skriv in PDF-fil som ska visas)
"TkDesk" EXEC tkdesk
@@ -132,7 +132,7 @@
"Textredigerare" MENU
"XFte" EXEC xfte
"XEmacs" SHEXEC xemacs || emacs
"XJed" EXEC xjed
"XJed" EXEC xjed
"NEdit" EXEC nedit
"Xedit" EXEC xedit
"VI" EXEC xterm -e vi
+8 -8
View File
@@ -1,6 +1,6 @@
/* Slovak root menu for WindowMaker
* (C) 2001 Jan "judas" Tomka
*
*
* Original translation by Jan "judas" Tomka on Jan 22 2001
* Currently maintained by Jan "judas" Tomka <tomka@oalevice.sk>
*
@@ -18,13 +18,13 @@
*
* <Názov> je ľubovoľný reťazec, ktorý sa použije ako názov položky. Ak obsahuje
* medzery, musí byť uzavretý v úvodzovkách.
*
*
* SHORTCUT udáva klávesovú skratku pre danú položku. <Klávesová skratka> má
* rovnakú syntax ako v súbore $HOME/GNUstep/Defaults/WindowMaker, napr.
* rovnakú syntax ako v súbore $HOME/GNUstep/Defaults/WindowMaker, napr.
* RootMenuKey alebo MiniaturizeKey.
*
* Nemôžete zadať klávesovú skratku pre položky typu MENU a OPEN_MENU.
*
*
* <Príkaz> je jeden z nasledujúcich:
* MENU - začína definíciu (sub)menu
* END - ukončuje definíciu (sub)menu
@@ -93,7 +93,7 @@
* nahradí sa v príkaze textom, ktorý zadáte
* %w - nahradí sa identifikačným číslom (XID) aktuálneho okna
* %W - nahradí sa číslom aktuálnej pracovnej plochy
*
*
* Vložiť špeciálne znaky (ako % a ") môžete pomocou znaku \ :
* xterm -T "\"Ahoj svet\""
*
@@ -128,7 +128,7 @@
"Prehliadač manuálov" EXEC xman
"Informácie" END
"Spustiť..." SHEXEC %a(Spustiť,Zadajte príkaz:)
"XTerm" EXEC xterm -sb
"XTerm" EXEC xterm -sb
"Rxvt" EXEC rxvt -bg black -fg white -fn fixed
"Pracovné plochy" WORKSPACE_MENU
"Aplikácie" MENU
@@ -141,7 +141,7 @@
"Správca súborov Xfm" EXEC xfm
"Správca súborov OffiX" EXEC files
"LyX" EXEC lyx
"Netscape" EXEC netscape
"Netscape" EXEC netscape
"Ghostview" EXEC ghostview %a(GhostView,Zadajte meno súboru)
"Acrobat" EXEC /usr/local/Acrobat3/bin/acroread %a(Acrobar,Zadajte meno PDF súboru)
"TkDesk" EXEC tkdesk
@@ -149,7 +149,7 @@
"Editory" MENU
"XFte" EXEC xfte
"XEmacs" SHEXEC xemacs || emacs
"XJed" EXEC xjed
"XJed" EXEC xjed
"NEdit" EXEC nedit
"Xedit" EXEC xedit
"VIM" EXEC xterm -e vim
+9 -9
View File
@@ -7,20 +7,20 @@
*
* <Title> is any string to be used as title. Must be enclosed with " if it
* has spaces
*
*
* SHORTCUT specifies a shortcut for that item. <Shortcut> has the
* same syntax of the shortcuts key options in the
* same syntax of the shortcuts key options in the
* $HOME/GNUstep/Defaults/WindowMaker file, such as RootMenuKey or MiniaturizeKey.
*
* You can't specify a shortcut for a MENU or OPEN_MENU entry.
*
* <Command> one of the valid commands:
*
* <Command> one of the valid commands:
* MENU - starts (sub)menu definition
* END - end (sub)menu definition
* OPEN_MENU - opens a menu from a file, pipe or directory(ies) contents
* and eventually precede each with a command.
* WORKSPACE_MENU - adds a submenu for workspace operations. Only one
* workspace_menu is allowed.
* workspace_menu is allowed.
* EXEC <program> - executes an external program
* SHEXEC <command> - executes a shell command (like gimp > /dev/null)
* EXIT - exits the window manager
@@ -53,7 +53,7 @@
* // it in current position
* OPEN_MENU file.menu
* 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.
* // The space between '|' and command itself is optional.
* OPEN_MENU | command
@@ -110,7 +110,7 @@
"Seznam procesov" EXEC xterm -e top
"Pomoč (Iskalec man strani)" EXEC xman
"Informacije" END
"XTerm" EXEC xterm -sb
"XTerm" EXEC xterm -sb
"Rxvt" EXEC rxvt -bg black -fg white -fn fixed
"Delovni prostori" WORKSPACE_MENU
"Aplikacije" MENU
@@ -123,7 +123,7 @@
"X File Manager" EXEC xfm
"OffiX Files" EXEC files
"LyX" EXEC lyx
"Netscape" EXEC netscape
"Netscape" EXEC netscape
"Ghostview" EXEC ghostview %a(Enter file to view)
"Acrobat" EXEC /usr/local/Acrobat3/bin/acroread %a(Enter PDF to view)
"TkDesk" EXEC tkdesk
@@ -131,7 +131,7 @@
"Urejevalniki besedil" MENU
"XFte" EXEC xfte
"XEmacs" SHEXEC xemacs || emacs
"XJed" EXEC xjed
"XJed" EXEC xjed
"NEdit" EXEC nedit
"Xedit" EXEC xedit
"VI" EXEC xterm -e vi
+14 -14
View File
@@ -5,14 +5,14 @@
*
* <Başlık> [SHORTCUT <Kısayol>] <Komut> <Parametreler>
*
* <Başlık> herhangi bitr yazıyı içerebilir, boşul içeriyorsa " içinde
* <Başlık> herhangi bitr yazıyı içerebilir, boşul içeriyorsa " içinde
* yazılmalı
*
*
* SHORTCUT sözkonusu giriş için kısayol tuşu tanımlamak için kullanılır
* <Kısayol>, $HOME/GNUstep/Defaults/WindowMaker olduğu gibi tanımlanabilir.
*
* MENU veya OPEN_MENU için kısayol tanımlayamazsınız.
*
*
* <Komut> aşağıdakilerden birisidir
* MENU - (Alt)Menü tanımını başlatır.
* OPEN_MENU - Menüyü, bir dosya veya dizinden oluşturur
@@ -28,28 +28,28 @@
* SHUTDOWN - tüm uygulamalrı kapatır ve sistemden çıkar
* SHOW_ALL - Tüm pencereleri saklı hallerinden çıkarır
* HIDE_OTHERS - içinde bulunulan dışındaki tüm pencereleri saklar
* SAVE_SESSION - mevcut uygulamaları ve pencere konumlarını saklar,
* SAVE_SESSION - mevcut uygulamaları ve pencere konumlarını saklar,
* yeniden başladığında bu konumları korumaya çalışır.
* CLEAR_SESSION - son saklanan bilgileri siler.
* CLEAR_SESSION - son saklanan bilgileri siler.
*
* OPEN_MENU yazım kuralları:
* 1. Dosyadan
* // dosya.menu isimli geçerli dosya tanımı içeren dosyayı alıp
* // dosya.menu isimli geçerli dosya tanımı içeren dosyayı alıp
* // belirtilen konuma ekler
* OPEN_MENU dosya.menu
*
* 2. Komut sonucundan
* // "komut"u çalıştırı ve çıktısını möenü olarak kullanır.
* 2. Komut sonucundan
* // "komut"u çalıştırı ve çıktısını möenü olarak kullanır.
* // Komutun çıktısı geçerli bir menü tanımı vermeli
* OPEN_MENU | komut
*
*
* 3. Dizinden
* // Bir veya daha fazla dizin içinde yer alan çalıştırılabilir
* // dosyaları alfabetik olarak sıralayarak menü oluşturur
* OPEN_MENU /bir/dizin [/bir/başka/dizin ...]
*
* 4. Dizinden komutla
* // Dizin seçeneği gibi, ancak dizindeki dosyaları "komut"
* // Dizin seçeneği gibi, ancak dizindeki dosyaları "komut"
* // ile çalıştırır
*
* OPEN_MENU /bir/dizin [/bir/başka/dizin ...] WITH komut -seçenekler
@@ -59,7 +59,7 @@
*
* ** EXEC komut satırı seçenekleri:
* %s - mevcut seçimi koyar.
* %a(mesaj) - bir mesaj başlığı ile bir kutucuk açarak yazılan bilgileri
* %a(mesaj) - bir mesaj başlığı ile bir kutucuk açarak yazılan bilgileri
* komuta parametre olarak gönderir
* %w - seçili pencerenin XID'sini verir.
*
@@ -96,7 +96,7 @@
"Süreç Dökümü" EXEC xterm -e top
"Kılavuz Tarayıcısı" EXEC xman
"Bilgi" END
"XTerm" EXEC xterm -sb
"XTerm" EXEC xterm -sb
"Rxvt" EXEC rxvt -bg black -fg white -fn fixed
"Çalışma Alanları" WORKSPACE_MENU
"Uygulamalar" MENU
@@ -109,7 +109,7 @@
"X File Manager" EXEC xfm
"OffiX Files" EXEC files
"LyX" EXEC lyx
"Netscape" EXEC netscape
"Netscape" EXEC netscape
"Ghostview" EXEC ghostview %a(PS dosyasını girin)
"Acrobat" EXEC /usr/local/Acrobat3/bin/acroread %a(PDF dosyasını girin)
"TkDesk" EXEC tkdesk
@@ -117,7 +117,7 @@
"Düzenleyiciler" MENU
"XFte" EXEC xfte
"XEmacs" SHEXEC xemacs || emacs
"XJed" EXEC xjed
"XJed" EXEC xjed
"NEdit" EXEC nedit
"Xedit" EXEC xedit
"VI" EXEC xterm -e vi
+8 -8
View File
@@ -7,20 +7,20 @@
*
* <Title> is any string to be used as title. Must be enclosed with " if it
* has spaces
*
*
* SHORTCUT specifies a shortcut for that item. <Shortcut> has the
* same syntax of the shortcuts key options in the
* same syntax of the shortcuts key options in the
* $HOME/GNUstep/Defaults/WindowMaker file, such as RootMenuKey or MiniaturizeKey.
*
* You can't specify a shortcut for a MENU or OPEN_MENU entry.
*
* <Command> one of the valid commands:
*
* <Command> one of the valid commands:
* MENU - starts (sub)menu definition
* END - end (sub)menu definition
* OPEN_MENU - opens a menu from a file, pipe or directory(ies) contents
* and eventually precede each with a command.
* WORKSPACE_MENU - adds a submenu for workspace operations. Only one
* workspace_menu is allowed.
* workspace_menu is allowed.
* EXEC <program> - executes an external program
* SHEXEC <command> - executes a shell command (like gimp > /dev/null)
* EXIT - exits the window manager
@@ -53,7 +53,7 @@
* // it in current position
* OPEN_MENU file.menu
* 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.
* // The space between '|' and command itself is optional.
* OPEN_MENU | command
@@ -79,7 +79,7 @@
* optional prompt and do substitution with what you typed
* %w - substitute with XID for the current focused window
* %W - substitute with the number of the current workspace
*
*
* You can override special characters (as % and ") with the \ character:
* ex: xterm -T "\"Hello World\""
*
@@ -114,7 +114,7 @@
"手册浏览器" EXEC xman
"信息" END
"运行..." EXEC %a(运行,要执行的命令:)
"XTerm" EXEC xterm -sb
"XTerm" EXEC xterm -sb
"Rxvt" EXEC rxvt -bg black -fg white -fn fixed
"工作空间" WORKSPACE_MENU
"应用程序" OPEN_MENU
+8 -8
View File
@@ -7,20 +7,20 @@
*
* <Title> is any string to be used as title. Must be enclosed with " if it
* has spaces
*
*
* SHORTCUT specifies a shortcut for that item. <Shortcut> has the
* same syntax of the shortcuts key options in the
* same syntax of the shortcuts key options in the
* ~/GNUstep/Defaults/WindowMaker file, such as RootMenuKey or MiniaturizeKey.
*
* You can't specify a shortcut for a MENU or OPEN_MENU entry.
*
* <Command> one of the valid commands:
*
* <Command> one of the valid commands:
* MENU - starts (sub)menu definition
* END - end (sub)menu definition
* OPEN_MENU - opens a menu from a file, pipe or directory(ies) contents
* and eventually precede each with a command.
* WORKSPACE_MENU - adds a submenu for workspace operations. Only one
* workspace_menu is allowed.
* workspace_menu is allowed.
* EXEC <program> - executes an external program
* EXIT - exits the window manager
* RESTART [<window manager>] - restarts WindowMaker or start another
@@ -52,7 +52,7 @@
* // it in current position
* OPEN_MENU file.menu
* 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.
* // The space between '|' and command itself is optional.
* OPEN_MENU | command
@@ -124,7 +124,7 @@
"X 檔案管理員" EXEC xfm
"OffiX Files" EXEC files
"LyX" EXEC lyx
"Netscape" EXEC netscape
"Netscape" EXEC netscape
"Ghostview" EXEC ghostview %a(GhostView,輸入要檢視的檔案)
"Acrobat" EXEC /usr/local/Acrobat3/bin/acroread %a(輸入要檢視的 PDF)
"TkDesk" EXEC tkdesk
@@ -132,7 +132,7 @@
"編輯器" MENU
"XFte" EXEC xfte
"XEmacs" SHEXEC xemacs || emacs
"XJed" EXEC xjed
"XJed" EXEC xjed
"NEdit" EXEC nedit
"Xedit" EXEC xedit
"VI" EXEC xterm -e vi
+2 -2
View File
@@ -91,10 +91,10 @@
("Weinfarben schattiert", EXEC, "wdwrite WindowMaker WorkspaceBack '(vgradient, \"#600040\", \"#180010\")'")
),
("Bilder", OPEN_MENU, "-noext /usr/local/share/WindowMaker/Backgrounds $(HOME)/GNUstep/Library/WindowMaker/Backgrounds WITH wmsetbg -u -t")
),
),
("Thema speichern", SHEXEC, "getstyle -t $(HOME)/GNUstep/Library/WindowMaker/Themes/\"%a(Themenname)\""),
("Iconsatz speichern", SHEXEC, "geticonset $(HOME)/GNUstep/Library/WindowMaker/IconSets/\"%a(Iconsatz-Name)\"")
),
),
("Beenden",
("Neustart", RESTART),
("BlackBox starten", RESTART, blackbox),
+2 -2
View File
@@ -91,11 +91,11 @@
("Sombras vino", EXEC, "wdwrite WindowMaker WorkspaceBack '(vgradient, \"#600040\", \"#180010\")'")
),
("Imagenes", OPEN_MENU, "-noext /usr/local/share/WindowMaker/Backgrounds $HOME/GNUstep/Library/WindowMaker/Backgrounds WITH wmsetbg -u -t")
),
),
("Guardar tema", SHEXEC, "getstyle -t $HOME/GNUstep/Library/WindowMaker/Themes/\"%a(Theme name)\""),
("Guardar iconos", SHEXEC, "geticonset $HOME/GNUstep/Library/WindowMaker/IconSets/\"%a(IconSet name)\""),
("Preferencias", EXEC, "#wprefs#")
),
),
("Salir",
("Reiniciar", RESTART),
("Empezar BlackBox", RESTART, blackbox),
+1 -1
View File
@@ -91,7 +91,7 @@
("Images", OPEN_MENU, "-noext /opt/share/WindowMaker/Backgrounds $HOME/GNUstep/Library/WindowMaker/Backgrounds WITH wmsetbg -u -t")
),
("Sauver le thème", SHEXEC, "getstyle -t $HOME/GNUstep/Library/WindowMaker/Themes /\"%a(Nom du thème,Entrez un nom de fichier:)\""),
("Sauver le jeu d'icônes", SHEXEC, "geticonset $HOME/GNUstep/Library/WindowMaker/IconSets /\"%a(Nom du jeu d'icônes,Entrez un nom de fichier:)\"")
("Sauver le jeu d'icônes", SHEXEC, "geticonset $HOME/GNUstep/Library/WindowMaker/IconSets /\"%a(Nom du jeu d'icônes,Entrez un nom de fichier:)\"")
),
("Quitter",
("Redémarrer", RESTART),
+2 -2
View File
@@ -91,10 +91,10 @@
("Sfumature Vinaccia", EXEC, "wdwrite WindowMaker WorkspaceBack '(vgradient, \"#600040\", \"#180010\")'")
),
("Immagini", OPEN_MENU, "-noext /usr/share/WindowMaker/Backgrounds ~/GNUstep/Library/WindowMaker/Backgrounds WITH wmsetbg -u -t")
),
),
("Salva il tema", EXEC, "getstyle -t ~/GNUstep/Library/WindowMaker/Themes/\"%a(Nome Tema)\""),
("Salva il set icone", EXEC, "geticonset ~/GNUstep/Library/WindowMaker/IconSets/\"%a(Nome IconSet)\"")
),
),
("Esci",
("Riavvia", RESTART),
("Avvia BlackBox", RESTART, blackbox),
+2 -2
View File
@@ -91,11 +91,11 @@
("Wine Shades", EXEC, "wdwrite WindowMaker WorkspaceBack '(vgradient, \"#600040\", \"#180010\")'")
),
("イメージ", OPEN_MENU, "-noext #wmdatadir#/Backgrounds $HOME/GNUstep/Library/WindowMaker/Backgrounds WITH wmsetbg -u -t")
),
),
("設定をテーマとしてセーブ", SHEXEC, "getstyle -t $HOME/GNUstep/Library/WindowMaker/Themes/\"%a(Theme name)\""),
("現在のアイコンセットをセーブ", SHEXEC, "geticonset $HOME/GNUstep/Library/WindowMaker/IconSets/\"%a(IconSet name)\""),
("設定ユーティリティ", EXEC, "#wprefs#")
),
),
("終了",
("再起動", RESTART),
("BlackBox をスタート", RESTART, blackbox),
+9 -9
View File
@@ -7,18 +7,18 @@
("Lista Procesów", EXEC, "xterm -T 'Lista Procesów' -e top"),
("Przeglądarka Manuali", EXEC, "xman")
),
("Konfiguracja",
("Konfiguracja",
("Edycja menu", EXEC, "xterm -T 'Edycja menu' -e vi $HOME/GNUstep/Library/WindowMaker/menu"),
("Ustawienie fontów", EXEC, "xterm -T 'Ustawienie fontów' -e vi $HOME/GNUstep/Defaults/WMGLOBAL"),
("Konfiguracja", EXEC, "xterm -T 'Konfiguracja' -e vi $HOME/GNUstep/Defaults/WindowMaker")
),
("Uruchom...", EXEC, "%a(Uruchom,Wpisz komende do uruchomienia:)"),
("Terminal", EXEC, "xterm -T 'Mój ulubiony terminal' -sb"),
("Edytor", EXEC, "xterm -T 'Moj ulubiony edytor' -e vi %a(Edytor,Podaj plik do edycji:)"),
("Pulpity", WORKSPACE_MENU),
("Aplikacje",
("Grafika",
("Gimp", EXEC, "gimp > /dev/null"),
@@ -43,10 +43,10 @@
("X Gnu debbuger", EXEC, "xxgdb"),
("Xwpe", EXEC, "xwpe")
),
("Internet",
("Przeglądarki",
("Netscape", EXEC, "netscape"),
("Netscape", EXEC, "netscape"),
("Arena", EXEC, "arena"),
("Lynx", EXEC, "xterm -e lynx %a(Lynx,Podaj URL:)")
),
@@ -76,13 +76,13 @@
("Editres", EXEC, "editres"),
("VI", EXEC, "xterm -e vi")
),
("Dźwięk",
("Xmcd", EXEC, "xmcd 2> /dev/null"),
("Xplaycd", EXEC, "xplaycd"),
("Xmixer", EXEC, "xmixer")
),
("Gry",
("Maze", EXEC, "maze"),
("Karty", EXEC, "spider"),
@@ -99,7 +99,7 @@
("xboing", EXEC, "xboing -sound"),
("XBill", EXEC, "xbill")
),
("Użytki",
("Kalkulator", EXEC, "xcalc"),
("Zegarek", EXEC, "xclock"),
+2 -2
View File
@@ -91,11 +91,11 @@
("Gradient Vişiniu", EXEC, "wdwrite WindowMaker WorkspaceBack '(vgradient, \"#600040\", \"#180010\")'")
),
("Imagini", OPEN_MENU, "-noext #wmdatadir#/Backgrounds $HOME/GNUstep/Library/WindowMaker/Backgrounds WITH wmsetbg -u -t")
),
),
("Salvează Tema", SHEXEC, "getstyle -t $HOME/GNUstep/Library/WindowMaker/Themes/\"%a(Theme name)\""),
("Salvează Setul de Iconiţe", SHEXEC, "geticonset $HOME/GNUstep/Library/WindowMaker/IconSets/\"%a(IconSet name)\""),
("Utilitar de Configurare", EXEC, "#wprefs#")
),
),
("Ieşire",
("Repornire", RESTART),
("Porneşte BlackBox", RESTART, blackbox),
+2 -2
View File
@@ -91,11 +91,11 @@
("Odtiene vínovej", EXEC, "wdwrite WindowMaker WorkspaceBack '(vgradient, \"#600040\", \"#180010\")'")
),
("Obrázky", OPEN_MENU, "-noext #wmdatadir#/Backgrounds $HOME/GNUstep/Library/WindowMaker/Backgrounds WITH wmsetbg -u -t")
),
),
("Uložiť tému", SHEXEC, "getstyle -t $HOME/GNUstep/Library/WindowMaker/Themes/\"%a(Theme name)\""),
("Uložiť sadu ikon", SHEXEC, "geticonset $HOME/GNUstep/Library/WindowMaker/IconSets/\"%a(IconSet name)\""),
("Konfiguračný nástroj", EXEC, "#wprefs#")
),
),
("Koniec",
("Reštartovať", RESTART),
("Spustiť BlackBox", RESTART, blackbox),
+2 -2
View File
@@ -93,10 +93,10 @@
("酒红阴影", EXEC, "wdwrite WindowMaker WorkspaceBack '(vgradient, \"#600040\", \"#180010\")'")
),
("图像", OPEN_MENU, "-noext #wmdatadir#/Backgrounds $HOME/GNUstep/Library/WindowMaker/Backgrounds WITH wmsetbg -u -t")
),
),
("保存主题", SHEXEC, "getstyle -t $HOME/GNUstep/Library/WindowMaker/Themes/\"%a(主题名)\""),
("保存图标集", SHEXEC, "geticonset $HOME/GNUstep/Library/WindowMaker/IconSets/\"%a(图标集名)\"")
),
),
("退出",
("重新启动", RESTART),
("启动 BlackBox", RESTART, blackbox),
+5 -5
View File
@@ -1,6 +1,6 @@
/*
* Some generic macros for WindowMaker configuration files
*
*
*/
#ifndef WMMACROS_
@@ -11,7 +11,7 @@
/*
* WS_BACK - sets the root background texture to VAL
*/
#define WS_BACK EXEC wdwrite WindowMaker WorkspaceBack
#define WS_BACK EXEC wdwrite WindowMaker WorkspaceBack
/*
* CLEARROOT - set the root background to nothing
@@ -20,10 +20,10 @@
/*
*
*
* MANUAL_SEARCH(ITEM) - search manual page for ITEM
*
* You might need to change this according to what's the exit status of your
*
* You might need to change this according to what's the exit status of your
* man(1). This is for the one that comes with Linux (RedHat)
*/
#ifdef HAVE_XLESS
+8 -6
View File
@@ -2419,8 +2419,10 @@ sub process {
# function brace can't be on same line, except for #defines of do while,
# or if closed on same line
if (($line=~/$Type\s*$Ident\(.*\).*\s{/) and
!($line=~/\#\s*define.*do\s{/) and !($line=~/}/)) {
if ($line =~ /$Type\s*$Ident\s*$balanced_parens\s*\{/ &&
$line !~ /\#\s*define\b.*do\s*\{/ &&
$line !~ /}/) {
ERROR("OPEN_BRACE",
"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
if (($line =~ /\(.*\){/ && $line !~ /\($Type\){/) ||
$line =~ /do{/) {
if (($line =~ /\(.*\)\{/ && $line !~ /\($Type\)\{/) ||
$line =~ /\b(?:else|do)\{/) {
if (ERROR("SPACING",
"space required before the open brace '{'\n" . $herecurr) &&
$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\s+(?:$Ident|-?$Constant)$/ && # for (...) bar()
$dstat !~ /^do\s*{/ && # do {...
$dstat !~ /^\({/ && # ({...
$dstat !~ /^\(\{/ && # ({...
$ctx !~ /^.\s*#\s*define\s+TRACE_(?:SYSTEM|INCLUDE_FILE|INCLUDE_PATH)\b/)
{
$ctx =~ s/\n*$//;
+56 -73
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 introduced in the version 1.11.3; because the 1.12 was realeased shortly
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
AC_CONFIG_SRCDIR([src/WindowMaker.h])
@@ -232,6 +232,18 @@ AS_IF([test "x$debug" = "xyes"],
])
dnl To upload documentation to the Website
dnl ======================================
AC_ARG_WITH([web-repo],
[AS_HELP_STRING([--with-web-repo=PATH], [path to your git repository for the Web home page (maintainer stuff)])],
[AS_CASE([$withval],
[yes], [AC_MSG_ERROR([bad value '$withval' for --with-web-repo, expected a path]) ],
[no], [WEB_REPO_ROOT=""],
[WEB_REPO_ROOT=$withval])],
[WEB_REPO_ROOT=""])
WM_CHECK_WEBREPODIR
dnl Support for Nested Functions by the compiler
dnl ============================================
WM_PROG_CC_NESTEDFUNC
@@ -284,18 +296,14 @@ _bindir=`eval echo $_bindir`
_libdir=`eval echo $libdir`
_libdir=`eval echo $_libdir`
lib_search_path='-L${libdir}'
inc_search_path='-I${includedir}'
dnl ===============================================
dnl Specify paths to look for libraries and headers
dnl ===============================================
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]),
[inc_search_path="$withval $inc_search_path"])
[inc_search_path="$withval"], [inc_search_path='-I${includedir}'])
dnl Features Configuration
@@ -421,7 +429,7 @@ AC_CHECK_HEADERS([sys/inotify.h],
[AC_DEFINE([HAVE_INOTIFY], [1], [Check for inotify])])
dnl Check for syslog
dnl Check for syslog
dnl ================
dnl It is used by WUtil to log the wwarning, werror and wfatal
AC_CHECK_HEADERS([syslog.h], [AC_DEFINE([HAVE_SYSLOG], [1], [Check for syslog])])
@@ -459,6 +467,7 @@ dnl that the gettext environment works
WM_I18N_LANGUAGES
WM_I18N_XGETTEXT
WM_I18N_MENUTEXTDOMAIN
WM_LIBRARY_CONSTRUCTORS
dnl ===========================================
dnl Stuff that uses X
@@ -468,7 +477,7 @@ AC_PATH_XTRA
AS_IF([test "x$no_x" = "xyes"],
[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.])])
X_LIBRARY_PATH=$x_libraries
@@ -483,7 +492,7 @@ AC_SUBST(X_LIBRARY_PATH)
dnl Decide which locale function to use, setlocale() or _Xsetlocale()
dnl by MANOME Tomonori
dnl by MANOME Tomonori
dnl ===========================================
WM_I18N_XLOCALE
@@ -618,72 +627,36 @@ AC_SUBST(FCLIBS)
dnl Xft2 antialiased font support
dnl =============================
m4_define([XFT_MIN_VERSION], [2.1.0])
PKG_CHECK_MODULES([XFT], [xft >= ]XFT_MIN_VERSION,
[], dnl Module found, nothing to do
[XFT_CFLAGS=failed])
AS_IF([test "x$XFT_CFLAGS" = "xfailed"],
[dnl pkg-config did not find it, try the legacy method
AC_CHECK_PROG([XFTCONFIG], [xft-config], [xft-config])
AS_IF([test -z "$XFTCONFIG"],
[AC_MSG_ERROR([libXft2 is not installed, is too old or could not be found -- $XFT_PKG_ERRORS]) ])
XFT_LIBS=`$XFTCONFIG --libs`
XFT_CFLAGS=`$XFTCONFIG --cflags`
WM_CHECK_XFT_VERSION(XFT_MIN_VERSION,
[], dnl Version is ok, nothing to do
[AC_MSG_ERROR([Version of libXft is too old, consider upgrading to] XFT_MIN_VERSION [or newer]) ])
])
AC_SUBST(XFT_CFLAGS)
AC_SUBST(XFT_LIBS)
xft=yes
XFTLIBS=""
if test "x$PKG_CONFIG" != x -a "`$PKG_CONFIG xft; echo $?`" = 0; then
XFTCONFIG="$PKG_CONFIG xft"
pkgconfig_xft=yes
else
AC_CHECK_PROG(XFTCONFIG, xft-config, xft-config)
fi
AC_MSG_CHECKING([for the Xft2 library])
if test "x$XFTCONFIG" != x; then
XFTLIBS=`$XFTCONFIG --libs`
XFTFLAGS=`$XFTCONFIG --cflags`
AC_MSG_RESULT([found])
else
AC_MSG_RESULT([not found])
echo
echo "ERROR!!! libXft2 is not installed or could not be found."
echo " Xft2 is a requirement for building Window Maker."
echo " Please install it (along with fontconfig) before continuing."
echo
exit 1
fi
minXFT="2.1.0"
goodxft="no"
dnl
dnl The macro below will use $XFTFLAGS (defined above) to find Xft.h
dnl
WM_CHECK_XFT_VERSION($minXFT, goodxft=yes, goodxft=no)
if test "$goodxft" = no; then
echo
echo "ERROR!!! libXft on this system is an old version."
echo " Please consider upgrading to at least version ${minXFT}."
echo
exit 1
fi
AC_SUBST(XFTFLAGS)
AC_SUBST(XFTLIBS)
dnl PANGO support
dnl =============
pango=no
AC_ARG_ENABLE(pango, AS_HELP_STRING([--enable-pango], [enable Pango text layout support]),
pango=$enableval, pango=no)
dnl The libray can be used by WINGs to get better support on UTF-8 for i18n
AC_ARG_ENABLE([pango],
[AS_HELP_STRING([--disable-pango], [disable Pango text layout support @<:@default=auto@:>@])],
[AS_CASE([$enableval],
[yes|no], [],
[AC_MSG_ERROR([bad value $enableval for --disable-pango])] )],
[enable_pango=auto])
WM_CHECK_LIBPANGO
PANGOFLAGS=
PANGOLIBS=
if test "$pango" = yes; then
PANGOLIBS=`$PKG_CONFIG pangoxft --libs`
PANGOFLAGS=`$PKG_CONFIG pangoxft --cflags`
if test "x$PANGOLIBS" = "x" ; then
AC_MSG_RESULT([not found])
else
AC_DEFINE(USE_PANGO, 1, [Define if Pango is to be used])
AC_MSG_RESULT([found])
fi
fi
inc_search_path="$inc_search_path $PANGOFLAGS"
AC_SUBST(PANGOLIBS)
dnl ==============================================
dnl Graphic Format Libraries
@@ -910,7 +883,7 @@ AC_CONFIG_FILES(
Makefile
dnl WRaster Library
wrlib/Makefile
wrlib/Makefile wrlib/po/Makefile
wrlib/tests/Makefile
dnl WINGs toolkit
@@ -955,9 +928,10 @@ echo "Supported core features: :$supported_core"
echo "Supported X extensions: :$supported_xext"
echo "Supported graphic format libraries :$supported_gfx"
echo "Unsupported features :$unsupported"
echo "Antialiased text support in WINGs : $xft"
echo "Pango text layout support in WINGs : $pango"
echo "Translated languages to support :$supported_locales"
AS_IF([test "x$WEB_REPO_ROOT" != "x"],
[AS_ECHO(["Git repository for WMaker's Website : $WEB_REPO_ROOT"]) ])
AS_IF([test "x$debug" = "xyes"],
[AS_ECHO(["Debug enabled: CFLAGS = $CFLAGS"]) ])
echo
@@ -982,6 +956,15 @@ AS_IF([test "x$enable_jpeg" = xno], [dnl
AS_ECHO(["WARNING WARNING WARNING WARNING WARNING WARNING WARNING"])dnl
])
AS_IF([test "x$LINGUAS" != "x"],
[AS_IF([test "X$wm_cv_library_constructors" = "Xlegacy"],
[AC_MSG_WARN([I18N is enabled, but library constructor attribute is not supported])
AS_ECHO([" If you have translation problems in lib WRaster, yet you know that the translation"])
AS_ECHO([" file (po) is valid, this could be a cause."])
AS_ECHO([])dnl
])dnl
])
dnl This is for Emacs. I'm lazy, I know... (nicolai)
dnl ================================================
-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

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