1
0
mirror of https://github.com/gryf/wmaker.git synced 2026-07-12 00:46:38 +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/Defaults/WindowMaker
WindowMaker/IconSets/Default.iconset WindowMaker/IconSets/Default.iconset
# These files are generated by the i18n process
/po/WindowMaker.pot
/po/*.mo
/WINGs/po/WINGs.pot
/WINGs/po/*.mo
/WPrefs.app/po/WPrefs.pot
/WPrefs.app/po/*.mo
/util/po/*.pot
/util/po/*.mo
# Some text editors generate backup files # Some text editors generate backup files
*~ *~
+3 -3
View File
@@ -4063,7 +4063,7 @@ Changes since version 0.17.5:
icons icons
- fixed bug in focusfollowmouse that made windows under the currently - fixed bug in focusfollowmouse that made windows under the currently
focused window that close, to not get the focus focused window that close, to not get the focus
- if the app is a .app, it will try to find it's icon in the .app - if the app is a .app, it will try to find its icon in the .app
directory and save it in the WMWindowAttributes, so that the dock can use it. directory and save it in the WMWindowAttributes, so that the dock can use it.
- drag docklets that select for mouse events to with Alt+drag - drag docklets that select for mouse events to with Alt+drag
@@ -4934,7 +4934,7 @@ Changes since version 0.3.2:
- application icons (not mini-windows) like I think how it is on NEXTSTEP(tm) - application icons (not mini-windows) like I think how it is on NEXTSTEP(tm)
- fixed "slippery" icon movement - fixed "slippery" icon movement
- added a Dock (not for GNUstep, as it will have it's own) - added a Dock (not for GNUstep, as it will have its own)
Changes since version 0.3.1: Changes since version 0.3.1:
............................ ............................
@@ -4964,7 +4964,7 @@ it's opened to select items, just drag the pointer
- transient owners get a different titlebar color when the focus - transient owners get a different titlebar color when the focus
is in the transient (e.g, in NeXTese: mainWindow is highlighted correctly when is in the transient (e.g, in NeXTese: mainWindow is highlighted correctly when
the keyWindow is a panel) the keyWindow is a panel)
- when transient is closed, it's owner always get the focus - when transient is closed, its owner always get the focus
- fixed XGrabButton/BadAccess bug - fixed XGrabButton/BadAccess bug
- fixed window_count error (this time I'm 90% sure) - fixed window_count error (this time I'm 90% sure)
- fixed focusNextWindow through Alt-Tab bug with non-focusable windows - fixed focusNextWindow through Alt-Tab bug with non-focusable windows
+3 -3
View File
@@ -333,7 +333,7 @@ Window Maker distribution.
The author Anthony Quinn <southgat@frontiernet.net> has released a The author Anthony Quinn <southgat@frontiernet.net> has released a
version that works with Window Maker >= 0.15.x. It is available from version that works with Window Maker >= 0.15.x. It is available from
it's home page at http://www.frontiernet.net/~southgat/wmsound/ its home page at http://www.frontiernet.net/~southgat/wmsound/
or on Largo's site at http://wm.current.nu/files.html#wmsound or on Largo's site at http://wm.current.nu/files.html#wmsound
for your convenience. for your convenience.
@@ -352,7 +352,7 @@ GNOME application they have no title bar" below.
To use it with CDE, read the answer for "How do I switch To use it with CDE, read the answer for "How do I switch
CDE's window manager to use Window Maker?" CDE's window manager to use Window Maker?"
To use it with KDE, read it's documentation to get rid of kwm (and possibly To use it with KDE, read its documentation to get rid of kwm (and possibly
kpanel) and replace it with wmaker. Then, start WPrefs.app, go to "Mouse kpanel) and replace it with wmaker. Then, start WPrefs.app, go to "Mouse
Preferences" and set the "Disable mouse actions" check box. You will Preferences" and set the "Disable mouse actions" check box. You will
need to restart Window Maker to make this change take effect. The need to restart Window Maker to make this change take effect. The
@@ -1283,7 +1283,7 @@ WM_NORMAL_HINTS(WM_SIZE_HINTS):
user specified size: 400 by 300 user specified size: 400 by 300
program specified minimum size: 400 by 300 program specified minimum size: 400 by 300
Now, when scilab opens it's window, Window Maker nicely does exactly what it Now, when scilab opens its window, Window Maker nicely does exactly what it
is told, that is, map the window at position 136679205, 1074468360 which is told, that is, map the window at position 136679205, 1074468360 which
obviously falls outside the screen no matter how big is your monitor ;) obviously falls outside the screen no matter how big is your monitor ;)
+29 -2
View File
@@ -41,11 +41,13 @@ EXTRA_DIST = TODO BUGS BUGFORM FAQ INSTALL \
script/check-cmdline-options-doc.sh \ script/check-cmdline-options-doc.sh \
script/check-translation-sources.sh \ script/check-translation-sources.sh \
script/check-wmaker-loaddef-callbacks.sh \ script/check-wmaker-loaddef-callbacks.sh \
script/generate-html-from-man.sh \
script/generate-mapfile-from-header.sh \ script/generate-mapfile-from-header.sh \
script/generate-po-from-template.sh \ script/generate-po-from-template.sh \
script/generate-txt-from-texi.sh \ script/generate-txt-from-texi.sh \
script/nested-func-to-macro.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 .PHONY: coverage-reset coverage
@@ -62,6 +64,10 @@ coverage:
genhtml --output-directory @lcov_output_directory@ coverage/coverage.info genhtml --output-directory @lcov_output_directory@ coverage/coverage.info
endif endif
################################################################################
# Section for the I18N processing
################################################################################
# make update-lang PO=<lang> # make update-lang PO=<lang>
# ========================== # ==========================
# Update the PO files against the POT file in all the translation sub-directories # 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 $$?); \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) update-lang || exit $$?); \
done done
SUBDIRS_PO = WINGs/po po util/po WPrefs.app/po SUBDIRS_PO = wrlib/po WINGs/po po util/po WPrefs.app/po
else else
@echo "Error: the program 'xgettext' was not found by configure, it is mandatory for this operation" >&2 ; exit 1 @echo "Error: the program 'xgettext' was not found by configure, it is mandatory for this operation" >&2 ; exit 1
endif endif
.PHONY: update-lang .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 # 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_$(V))
am__v_CHKOPTS_ = $(am__v_CHKOPTS_$(AM_DEFAULT_VERBOSITY)) 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 The thresholds can be changed in wconfig.h by changing one or both of
AUTO_LOWER_DELAY and AUTO_RAISE_DELAY (expressed in milliseconds). AUTO_LOWER_DELAY and AUTO_RAISE_DELAY (expressed in milliseconds).
For example if you set AUTO_RAISE_DELAY to 0, then the Clip will be raised as For example if you set AUTO_RAISE_DELAY to 0, then the Clip will be raised as
soon as the mouse pointer enters it's area. Setting AUTO_RAISE_DELAY to a very soon as the mouse pointer enters its area. Setting AUTO_RAISE_DELAY to a very
big value, will make the Clip to practically do not auto raise unless clicked, big value, will make the Clip to practically do not auto raise unless clicked,
but to be automatically lowered after AUTO_LOWER_DELAY (ms) when leaved. but to be automatically lowered after AUTO_LOWER_DELAY (ms) when leaved.
@@ -2572,7 +2572,7 @@ The OPEN_MENU command now supports the following syntax:
// it in current position // it in current position
OPEN_MENU file.menu OPEN_MENU file.menu
2. Pipe menu handling. 2. Pipe menu handling.
// opens command and uses it's stdout to construct menu. // opens command and uses its stdout to construct menu.
// Command's output must be a valid menu description. // Command's output must be a valid menu description.
OPEN_MENU | command OPEN_MENU | command
3. Directory handling. 3. Directory handling.
@@ -3175,7 +3175,7 @@ when they are first mapped
titlebar gradients are in a single piece now titlebar gradients are in a single piece now
the WMDock file was merged into the WMState file. You can insert this the WMDock file was merged into the WMState file. You can insert this
file in WMState and set it's key to Dock. For example, if your WMDock file in WMState and set its key to Dock. For example, if your WMDock
contains: contains:
{ {
+2 -2
View File
@@ -178,7 +178,7 @@ Running multiple instances of Window Maker
It is not a good idea to run more than one instance of Window Maker It is not a good idea to run more than one instance of Window Maker
from the same user (so that wmaker will use the same configuration files) at the from the same user (so that wmaker will use the same configuration files) at the
same time. You might get unexpected behavior when Window Maker updates it's same time. You might get unexpected behavior when Window Maker updates its
configuration files. configuration files.
If you really desire to do this, try running Window Maker with the command line If you really desire to do this, try running Window Maker with the command line
@@ -209,7 +209,7 @@ while keeping a nice appearance and good functionality, follow the items bellow:
- remove support for image formats you don't use - remove support for image formats you don't use
- to reduce memory usage, disable the icon cache, by setting the RIMAGE_CACHE - to reduce memory usage, disable the icon cache, by setting the RIMAGE_CACHE
environment variable to 0. If you want to increase performance at the cost of environment variable to 0. If you want to increase performance at the cost of
memory usage, set it's value to a value like the number of different icons you memory usage, set its value to a value like the number of different icons you
use. Also, disable anti-aliased text support in ~/GNUstep/Defaults/WMGLOBAL. use. Also, disable anti-aliased text support in ~/GNUstep/Defaults/WMGLOBAL.
+1 -1
View File
@@ -8,7 +8,7 @@ noinst_PROGRAMS = fontl puzzle colorpick
LDADD= $(top_builddir)/WINGs/libWINGs.la $(top_builddir)/wrlib/libwraster.la \ LDADD= $(top_builddir)/WINGs/libWINGs.la $(top_builddir)/wrlib/libwraster.la \
$(top_builddir)/WINGs/libWUtil.la \ $(top_builddir)/WINGs/libWUtil.la \
@XFTLIBS@ @INTLIBS@ @XLIBS@ @XFT_LIBS@ @INTLIBS@ @XLIBS@
colorpick_DEPENDENCIES = $(top_builddir)/WINGs/libWINGs.la colorpick_DEPENDENCIES = $(top_builddir)/WINGs/libWINGs.la
+1 -1
View File
@@ -25,6 +25,6 @@ AM_CPPFLAGS = -I$(top_srcdir)/wrlib -I$(top_srcdir)/WINGs \
LDADD= $(top_builddir)/WINGs/libWINGs.la $(top_builddir)/wrlib/libwraster.la \ LDADD= $(top_builddir)/WINGs/libWINGs.la $(top_builddir)/wrlib/libwraster.la \
$(top_builddir)/WINGs/libWUtil.la \ $(top_builddir)/WINGs/libWUtil.la \
@XFTLIBS@ @INTLIBS@ @XFT_LIBS@ @INTLIBS@
test_LDADD = wtableview.o wtabledelegates.o $(LDADD) test_LDADD = wtableview.o wtabledelegates.o $(LDADD)
+7 -6
View File
@@ -12,7 +12,7 @@ lib_LTLIBRARIES = libWUtil.la libWINGs.la
LDADD= libWUtil.la libWINGs.la $(top_builddir)/wrlib/libwraster.la @INTLIBS@ 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@ libWUtil_la_LIBADD = @LIBBSD@
EXTRA_DIST = BUGS make-rgb Examples Extras Tests EXTRA_DIST = BUGS make-rgb Examples Extras Tests
@@ -87,11 +87,12 @@ libWUtil_la_SOURCES = \
wutil.c wutil.c
AM_CFLAGS = AM_CFLAGS = @PANGO_CFLAGS@
AM_CPPFLAGS = -DRESOURCE_PATH=\"$(datadir)/WINGs\" \ AM_CPPFLAGS = -DRESOURCE_PATH=\"$(datadir)/WINGs\" \
-I$(top_srcdir)/WINGs/WINGs -I$(top_srcdir)/wrlib -I$(top_srcdir)/src \ -I$(top_srcdir)/WINGs/WINGs -I$(top_builddir)/WINGs/WINGs \
@XFTFLAGS@ @HEADER_SEARCH_PATH@ -I$(top_builddir)/wrlib -I$(top_srcdir)/src \
@XFT_CFLAGS@ @HEADER_SEARCH_PATH@
pkgconfigdir = $(libdir)/pkgconfig pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = WINGs.pc WUtil.pc pkgconfig_DATA = WINGs.pc WUtil.pc
@@ -105,8 +106,8 @@ WINGs.pc: Makefile
@echo 'Version: $(VERSION)' >> $@ @echo 'Version: $(VERSION)' >> $@
@echo 'Requires: wrlib WUtil' >> $@ @echo 'Requires: wrlib WUtil' >> $@
@echo 'Libs: $(lib_search_path) -lWINGs' >> $@ @echo 'Libs: $(lib_search_path) -lWINGs' >> $@
@echo 'Libs.private: $(XFTLIBS) $(PANGOLIBS) $(XLIBS) -lm $(INTLIBS)' >> $@ @echo 'Libs.private: $(XFT_LIBS) $(PANGOLIBS) $(XLIBS) -lm $(INTLIBS)' >> $@
@echo 'Cflags: $(inc_search_path)' >> $@ @echo 'Cflags: $(inc_search_path) @PANGO_CFLAGS@' >> $@
WUtil.pc: Makefile WUtil.pc: Makefile
@echo "Generating $@" @echo "Generating $@"
+6 -6
View File
@@ -8,25 +8,25 @@
kojima@windowmaker.info kojima@windowmaker.info
WINGs is a small widget set with the N*XTSTEP look and feel. It's API WINGs is a small widget set with the N*XTSTEP look and feel. Its API
is inspired in OpenStep and it's implementation borrows some ideas is inspired in OpenStep and its implementation borrows some ideas
from Tk. It has a reasonable set of widgets, sufficient for building from Tk. It has a reasonable set of widgets, sufficient for building
small applications (like a CDPlayer or hacking something like rxvt). It small applications (like a CDPlayer or hacking something like rxvt). It
also has other functions that are usefull for applications, like a also has other functions that are usefull for applications, like a
User Defaults alike configuration manager and a notification system. User Defaults alike configuration manager and a notification system.
The library is limited and it's design is a little sloppy, The library is limited and its design is a little sloppy,
so it's not intended to build large or complex applications, like so it's not intended to build large or complex applications, like
anything more complex than a CDPlayer. GNUstep should be used for such anything more complex than a CDPlayer. GNUstep should be used for such
applications. applications.
Since WINGs is written in C and is sort of low-level it is small Since WINGs is written in C and is sort of low-level it is small
and faster than say, Motif or even Athena. Knowing Xlib will help you to and faster than say, Motif or even Athena. Knowing Xlib will help you to
workaround some of it's limitations, although you'll probably be able to workaround some of its limitations, although you'll probably be able to
write something like a trivial tic-tac-toe game without knowing much Xlib. write something like a trivial tic-tac-toe game without knowing much Xlib.
Some of it's functions are designed to support the Window Maker window Some of its functions are designed to support the Window Maker window
manager (see http://windowmaker.info) In fact, it's primary role is to manager (see http://windowmaker.info) In fact, its primary role is to
support Window Maker. All other uses of it are just an added bonus. support Window Maker. All other uses of it are just an added bonus.
It will help you to understand the API if you read the ApplicationKit It will help you to understand the API if you read the ApplicationKit
+2 -2
View File
@@ -6,7 +6,7 @@ noinst_PROGRAMS = wtest wmquery wmfile testmywidget
LDADD= $(top_builddir)/WINGs/libWINGs.la $(top_builddir)/wrlib/libwraster.la \ LDADD= $(top_builddir)/WINGs/libWINGs.la $(top_builddir)/wrlib/libwraster.la \
$(top_builddir)/WINGs/libWUtil.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
@@ -17,4 +17,4 @@ wtest_DEPENDENCIES = $(top_builddir)/WINGs/libWINGs.la
EXTRA_DIST = logo.xpm upbtn.xpm wm.html wm.png EXTRA_DIST = logo.xpm upbtn.xpm wm.html wm.png
AM_CPPFLAGS = -I$(top_srcdir)/WINGs -I$(top_srcdir)/wrlib -I$(top_srcdir)/src \ 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@
+11 -1
View File
@@ -5,4 +5,14 @@ AUTOMAKE_OPTIONS =
# is this a kluge? if so, how should i do it? # is this a kluge? if so, how should i do it?
includedir = @includedir@/WINGs 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/Xlib.h>
#include <X11/Xutil.h> #include <X11/Xutil.h>
#ifdef USE_PANGO @USE_PANGO@#include <pango/pango.h>
#include <pango/pango.h>
#endif
#include <WINGs/WINGs.h> #include <WINGs/WINGs.h>
@@ -459,9 +457,7 @@ typedef struct W_Font {
short refCount; short refCount;
char *name; char *name;
#ifdef USE_PANGO @USE_PANGO@ PangoLayout *layout;
PangoLayout *layout;
#endif
} W_Font; } W_Font;
#define W_FONTID(f) (f)->font->fid #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; return tmp;
} }
+1
View File
@@ -1695,6 +1695,7 @@ Bool WMWritePropListToFile(WMPropList * plist, const char *path)
if (fprintf(theFile, "%s\n", desc) != strlen(desc) + 1) { if (fprintf(theFile, "%s\n", desc) != strlen(desc) + 1) {
werror(_("writing to file: %s failed"), thePath); werror(_("writing to file: %s failed"), thePath);
wfree(desc); wfree(desc);
fclose(theFile);
goto failure; goto failure;
} }
+12 -8
View File
@@ -2645,7 +2645,7 @@ static void hsbTextFieldCallback(void *observerData, WMNotification * notificati
{ {
CPColor cpColor; CPColor cpColor;
int value[3]; int value[3];
char tmp[4]; char tmp[12]; /* We only 4 bytes needed, but compilers cannot know that */
int n; int n;
W_ColorPanel *panel = (W_ColorPanel *) observerData; W_ColorPanel *panel = (W_ColorPanel *) observerData;
@@ -3504,13 +3504,17 @@ static void convertCPColor(CPColor * color)
old_hue = color->hsv.hue; old_hue = color->hsv.hue;
RRGBtoHSV(&(color->rgb), &(color->hsv)); RRGBtoHSV(&(color->rgb), &(color->hsv));
/* In black the hue is undefined, and may change by conversion /*
* Same for white. */ * For pure grey colors, the Hue is generally calculated
if (((color->rgb.red == 0) && * as 0, but in reality the Hue does not matter.
(color->rgb.green == 0) && *
(color->rgb.blue == 0)) || * But in an interactive GUI it is interresting to remember
((color->rgb.red == 0) && (color->rgb.green == 0) && (color->rgb.blue == 255)) * 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; color->hsv.hue = old_hue;
break; break;
case cpHSV: case cpHSV:
+1 -1
View File
@@ -945,7 +945,7 @@ void WMSetFocusToWidget(WMWidget * widget)
/* /*
* WMRealizeWidget- * WMRealizeWidget-
* Realizes the widget and all it's children. * Realizes the widget and all its children.
* *
*/ */
void WMRealizeWidget(WMWidget * w) void WMRealizeWidget(WMWidget * w)
+12 -6
View File
@@ -446,12 +446,18 @@ static void str2rcolor(RContext * rc, const char *name, RColor * color)
{ {
XColor xcolor; XColor xcolor;
XParseColor(rc->dpy, rc->cmap, name, &xcolor); if (XParseColor(rc->dpy, rc->cmap, name, &xcolor) != 0) {
color->alpha = 255;
color->alpha = 255; color->red = xcolor.red >> 8;
color->red = xcolor.red >> 8; color->green = xcolor.green >> 8;
color->green = xcolor.green >> 8; color->blue = xcolor.blue >> 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) static void dumpRImage(const char *path, RImage * image)
+12 -4
View File
@@ -113,7 +113,13 @@ static const struct {
/* default: */ False, OPTION_WMAKER, "OpenTransientOnOwnerWorkspace" }, /* default: */ False, OPTION_WMAKER, "OpenTransientOnOwnerWorkspace" },
{ N_("Wrap dock-attached icons around the screen edges."), { N_("Wrap dock-attached icons around the screen edges."),
/* default: */ True, OPTION_WMAKER, "WrapAppiconsInDock" } /* default: */ True, OPTION_WMAKER, "WrapAppiconsInDock" },
{ N_("Double click on titlebar maximize a window to full screen."),
/* default: */ False, OPTION_WMAKER, "DbClickFullScreen" },
{ N_("Close rootmenu when mouse (left or right) is clicked outside focus."),
/* default: */ False, OPTION_WMAKER, "CloseRootMenuByLeftOrRightMouseClick" }
}; };
@@ -140,15 +146,16 @@ typedef struct _Panel {
static void changeIntTextfield(void *data, int delta) static void changeIntTextfield(void *data, int delta)
{ {
WMTextField *textfield; WMTextField *textfield;
char *text; char *text, buffer[12];
int value; int value;
textfield = (WMTextField *)data; textfield = (WMTextField *)data;
text = WMGetTextFieldText(textfield); text = WMGetTextFieldText(textfield);
value = atoi(text); value = atoi(text);
wfree(text);
value += delta; value += delta;
sprintf(text, "%d", value); sprintf(buffer, "%d", value);
WMSetTextFieldText(textfield, text); WMSetTextFieldText(textfield, buffer);
} }
static void downButtonCallback(WMWidget *self, void *data) static void downButtonCallback(WMWidget *self, void *data)
@@ -308,6 +315,7 @@ static void storeDefaults(_Panel *panel)
text = WMGetTextFieldText(panel->textfield[i]); text = WMGetTextFieldText(panel->textfield[i]);
value = atoi(text); value = atoi(text);
wfree(text);
SetIntegerForKey(value, expert_options[i].op_name); SetIntegerForKey(value, expert_options[i].op_name);
break; break;
+2 -1
View File
@@ -22,6 +22,7 @@
#include "WPrefs.h" #include "WPrefs.h"
#include <unistd.h> #include <unistd.h>
#include <fontconfig/fontconfig.h> #include <fontconfig/fontconfig.h>
#include <math.h>
/* workaround for older fontconfig, that doesn't define these constants */ /* workaround for older fontconfig, that doesn't define these constants */
#ifndef FC_WEIGHT_NORMAL #ifndef FC_WEIGHT_NORMAL
@@ -521,7 +522,7 @@ static void selectedOption(WMWidget * w, void *data)
WMListItem *item = WMGetListItem(panel->sizeL, i); WMListItem *item = WMGetListItem(panel->sizeL, i);
int distance; int distance;
distance = abs(size - atoi(item->text)); distance = fabs(size - atoi(item->text));
if (i == 0 || distance < closest) { if (i == 0 || distance < closest) {
closest = distance; closest = distance;
+3 -3
View File
@@ -195,8 +195,8 @@ static void showData(_Panel * panel)
if (i < 0) if (i < 0)
i = 0; i = 0;
else if (i > 9) else if (i > 29)
i = 9; i = 29;
WMSetPopUpButtonSelectedItem(panel->sizeP, i); WMSetPopUpButtonSelectedItem(panel->sizeP, i);
/* Mini-Previews for Icons */ /* Mini-Previews for Icons */
@@ -339,7 +339,7 @@ static void createPanel(Panel * p)
panel->sizeP = WMCreatePopUpButton(panel->sizeF); panel->sizeP = WMCreatePopUpButton(panel->sizeF);
WMResizeWidget(panel->sizeP, 80, 20); WMResizeWidget(panel->sizeP, 80, 20);
WMMoveWidget(panel->sizeP, 10, 19); 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); sprintf(buf, "%ix%i", i, i);
WMAddPopUpButtonItem(panel->sizeP, buf); WMAddPopUpButtonItem(panel->sizeP, buf);
} }
+3 -2
View File
@@ -45,10 +45,11 @@ WPrefs_SOURCES = \
# KeyboardSettings.c \ # KeyboardSettings.c \
# Themes.c # Themes.c
AM_CFLAGS = AM_CFLAGS = @PANGO_CFLAGS@
AM_CPPFLAGS = -DRESOURCE_PATH=\"$(wpdatadir)\" -DWMAKER_RESOURCE_PATH=\"$(pkgdatadir)\" \ 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 WPrefs_DEPENDENCIES = $(top_builddir)/WINGs/libWINGs.la
+16 -1
View File
@@ -914,6 +914,11 @@ static ItemData *parseCommand(WMPropList * item)
data->type = ExecInfo; data->type = ExecInfo;
if (parameter == NULL) {
wfree(data);
return NULL;
}
data->param.exec.command = wstrdup(parameter); data->param.exec.command = wstrdup(parameter);
if (shortcut) if (shortcut)
data->param.exec.shortcut = wstrdup(shortcut); data->param.exec.shortcut = wstrdup(shortcut);
@@ -926,6 +931,12 @@ static ItemData *parseCommand(WMPropList * item)
* |pipe * |pipe
*/ */
p = parameter; p = parameter;
if (p == NULL) {
wfree(data);
return NULL;
}
while (isspace(*p) && *p) while (isspace(*p) && *p)
p++; p++;
if (*p == '|') { if (*p == '|') {
@@ -1502,8 +1513,12 @@ static void showData(_Panel * panel)
path = wexpandpath(WMGetFromPLString(pmenu)); 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); path = wfindfile(DEF_CONFIG_PATHS, path);
wfree(old_path);
}
/* TODO: if needed, concatenate locale suffix to path. /* TODO: if needed, concatenate locale suffix to path.
See getLocalizedMenuFile() in src/rootmenu.c. */ See getLocalizedMenuFile() in src/rootmenu.c. */
+3 -3
View File
@@ -7,7 +7,7 @@
WPrefs.app is the preferences "editor" for the WindowMaker window WPrefs.app is the preferences "editor" for the WindowMaker window
manager. It can be used to set most of the preference options of WindowMaker manager. It can be used to set most of the preference options of WindowMaker
and define it's applications menu. It also can change some settings and define its applications menu. It also can change some settings
that do not belong to WindowMaker. that do not belong to WindowMaker.
Although WPrefs.app is designed to be easy to use, you should read the Although WPrefs.app is designed to be easy to use, you should read the
@@ -16,7 +16,7 @@ of WindowMaker that are not related to configuration.
To run WPrefs, do not put it in your search path. Instead, run it To run WPrefs, do not put it in your search path. Instead, run it
with the full path, like /usr/local/GNUstep/Applications/WPrefs.app/WPrefs with the full path, like /usr/local/GNUstep/Applications/WPrefs.app/WPrefs
Then, dock it's application icon. The dock will automatically detect it's Then, dock its application icon. The dock will automatically detect its
icon and use it. icon and use it.
If you change configuration often, you might want to leave WPrefs If you change configuration often, you might want to leave WPrefs
@@ -46,7 +46,7 @@ The mouse speed configuration is saved as a call for xset in
~/G/D/L/W/autostart. WindowMaker calls this file when it is started. ~/G/D/L/W/autostart. WindowMaker calls this file when it is started.
If you don't want or can't use the menu definition section, do not If you don't want or can't use the menu definition section, do not
open it's section (or if you do open it, do not Save), or WPrefs will open its section (or if you do open it, do not Save), or WPrefs will
overwrite your ~/G/D/WMRootMenu file. overwrite your ~/G/D/WMRootMenu file.
Only options that have different values than what is found in the Only options that have different values than what is found in the
+1 -1
View File
@@ -5,7 +5,7 @@ CATALOGS = @WPREFSMOFILES@
CLEANFILES = $(DOMAIN).pot $(CATALOGS) CLEANFILES = $(DOMAIN).pot $(CATALOGS)
EXTRA_DIST = bg.po ca.po cs.po de.po es.po et.po fi.po fr.po fy.po hr.po hu.po \ EXTRA_DIST = bg.po ca.po cs.po de.po es.po et.po fi.po fr.po fy.po hr.po hu.po \
it.po ja.po ko.po nl.po pt.po ru.po sk.po uk.po zh_CN.po zh_TW.po it.po ja.po ko.po nl.po pt.po ru.po sk.po tr.po uk.po zh_CN.po zh_TW.po
POTFILES = \ POTFILES = \
$(top_srcdir)/WPrefs.app/Appearance.c \ $(top_srcdir)/WPrefs.app/Appearance.c \
+2 -2
View File
@@ -1,7 +1,7 @@
File Language Current Maintainer File Language Current Maintainer
------------------------------------------------------------------------------ ------------------------------------------------------------------------------
pt.po Portuguese Eliphas Levy Theodoro <eliphas@conectiva.com.br> 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> fr.po French Bastien NOCERA <hadess@writeme.com>
Hadess <hadess@infonie.fr> Hadess <hadess@infonie.fr>
Antoine Hulin <antoine@origan.fdn.org> Antoine Hulin <antoine@origan.fdn.org>
@@ -23,6 +23,6 @@ bg.po Bulgarian Slavei Karadjov <slaff@exco.net>
Anton Zinoviev <zinoviev@debian.org> Anton Zinoviev <zinoviev@debian.org>
sk.po Slovak Jan 'judas' Tomka <judas@linux.sk> sk.po Slovak Jan 'judas' Tomka <judas@linux.sk>
et.po Estonian Ivar Smolin <okul@linux.ee> 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> nl.po Dutch Alwin <translations@ziggo.nl>
fy.po Frisian 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 #: ../../WPrefs.app/KeyboardShortcuts.c:518
msgid "Toggle keyboard language" msgid "Toggle keyboard language"
msgstr "Tastatursbelegung ändern" msgstr "Tastaturbelegung ändern"
#: ../../WPrefs.app/KeyboardShortcuts.c:532 #: ../../WPrefs.app/KeyboardShortcuts.c:532
msgid "Shortcut" msgid "Shortcut"
+1 -1
View File
@@ -1671,7 +1671,7 @@ msgstr "Keela tiitliriba"
msgid "" msgid ""
"Remove the titlebar of this window.\n" "Remove the titlebar of this window.\n"
"To access the window commands menu of a window\n" "To access the window commands menu of a window\n"
"without it's titlebar, press Control+Esc (or the\n" "without its titlebar, press Control+Esc (or the\n"
"equivalent shortcut, if you changed the default\n" "equivalent shortcut, if you changed the default\n"
"settings)." "settings)."
msgstr "" msgstr ""
+69 -18
View File
@@ -380,45 +380,71 @@ msgstr ""
"параметров и количества цветов для резервирования за\n" "параметров и количества цветов для резервирования за\n"
"Window Maker'ом при работе с 8bit'ным цветом (8bpp)." "Window Maker'ом при работе с 8bit'ным цветом (8bpp)."
#: ../../WPrefs.app/Expert.c:75 #: ../../WPrefs.app/Expert.c:44
msgid "" msgid "Disable miniwindows (icons for minimized windows). For use with KDE/GNOME."
"Disable miniwindows (icons for miniaturized windows). For use with KDE/GNOME." msgstr "Запретить миниокна иконки для минимизированных окон. Для использования с KDE/GNOME."
msgstr ""
"Запретить миниокна (иконки для минимизированных окон). Для использования с "
"KDE/GNOME."
#: ../../WPrefs.app/Expert.c:76 #: ../../WPrefs.app/Expert.c:47
msgid "Ignore decoration hints for GTK applications."
msgstr "Игнорировать декорацию окон для GTK приложений."
#: ../../WPrefs.app/Expert.c:53
msgid "Do not set non-WindowMaker specific parameters (do not use xset)." msgid "Do not set non-WindowMaker specific parameters (do not use xset)."
msgstr "" msgstr ""
"Не устанавливать параметры, не относящиеся непосредственно к\n" "Не устанавливать параметры, не относящиеся непосредственно к\n"
"Window Maker'у (не использовать xset)." "Window Maker'у (не использовать xset)."
#: ../../WPrefs.app/Expert.c:77 #: ../../WPrefs.app/Expert.c:56
msgid "Automatically save session when exiting Window Maker." msgid "Automatically save session when exiting Window Maker."
msgstr "Автоматически сохранять сессию при выходе из Window Maker'а." msgstr "Автоматически сохранять сессию при выходе из Window Maker'а."
#: ../../WPrefs.app/Expert.c:78 #: ../../WPrefs.app/Expert.c:59
msgid "Use SaveUnder in window frames, icons, menus and other objects." msgid "Use SaveUnder in window frames, icons, menus and other objects."
msgstr "Использовать SaveUnder для окон, иконок, меню и других объектов." msgstr "Использовать SaveUnder для окон, иконок, меню и других объектов."
#: ../../WPrefs.app/Expert.c:79 #: ../../WPrefs.app/Expert.c:62
msgid "Use Windoze style cycling."
msgstr "Переключение окон в стиле Windows"
#: ../../WPrefs.app/Expert.c:80
msgid "Disable confirmation panel for the Kill command." msgid "Disable confirmation panel for the Kill command."
msgstr "Запретить диалог подтверждения для команды `Убить'." msgstr "Запретить диалог подтверждения для команды `Убить'."
# awn: FIXME: что это вообще значит?
#: ../../WPrefs.app/Expert.c:81
msgid "Disable selection animation for selected icons." msgid "Disable selection animation for selected icons."
msgstr "Запретить анимацию выбора для выбранных иконок." msgstr "Запретить анимацию выбора для выбранных иконок."
#: ../../WPrefs.app/Expert.c:115 msgid "Show switch panel when cycling windows."
msgstr "Показывать панель переключения окон."
#: ../../WPrefs.app/Expert.c:68
msgid "Smooth font edges (needs restart)."
msgstr "Cглаживание шрифтов (требуется перезагрузка)."
#: ../../WPrefs.app/Expert.c:80
msgid "Show workspace title on Clip."
msgstr "Показывать имя рабочего места на скрепке."
#: ../../WPrefs.app/Expert.c:83
msgid "Highlight the icon of the application when it has the focus."
msgstr "Подсвечивание иконок при нажатии (в фокусе)."
#: ../../WPrefs.app/Expert.c:91
msgid "Maximize (snap) a window to edge or corner by dragging."
msgstr "Прилипания окон по краям и углам."
#: ../../WPrefs.app/Expert.c:100
msgid "Snapping a window to the top maximizes it to the full screen."
msgstr "Распахнуть окно при перетаскивании к верхнему краю."
#: ../../WPrefs.app/Expert.c:118
msgid "Double click on titlebar maximize a window to full screen."
msgstr "Распахнуть окно двойным щелчком."
#: ../../WPrefs.app/Expert.c:121
msgid "Close rootmenu when mouse (left or right) is clicked outside focus."
msgstr "Закрывать меню приложений правым или левым щелчком мыши вне фокуса."
#: ../../WPrefs.app/Expert.c:328
msgid "Expert User Preferences" msgid "Expert User Preferences"
msgstr "Установки для опытного пользователя" msgstr "Установки для опытного пользователя"
#: ../../WPrefs.app/Expert.c:117 #: ../../WPrefs.app/Expert.c:330
msgid "" msgid ""
"Options for people who know what they're doing...\n" "Options for people who know what they're doing...\n"
"Also have some other misc. options." "Also have some other misc. options."
@@ -623,6 +649,11 @@ msgstr ""
"Параметры обработки иконок и миниокон. Размещение иконок,\n" "Параметры обработки иконок и миниокон. Размещение иконок,\n"
"размер иконок, в каком стиле анимировать сворачивание." "размер иконок, в каком стиле анимировать сворачивание."
#: ../../WPrefs.app/Icons.c:414
msgid "Single click activation"
msgstr "Одинарный щелчок мыши"
#: ../../WPrefs.app/imagebrowser.c:95 #: ../../WPrefs.app/imagebrowser.c:95
msgid "View" msgid "View"
msgstr "" msgstr ""
@@ -1901,6 +1932,10 @@ msgstr ""
msgid "Resist" msgid "Resist"
msgstr "Упираться" msgstr "Упираться"
#: ../../WPrefs.app/WindowHandling.c:406
msgid "Opaque Move/Resize"
msgstr "Перемещ/Измен.разм."
#: ../../WPrefs.app/WindowHandling.c:407 #: ../../WPrefs.app/WindowHandling.c:407
msgid "Attract" msgid "Attract"
msgstr "Притягиваться" msgstr "Притягиваться"
@@ -1923,6 +1958,22 @@ msgstr ""
"Как обращаться с окнами. Начальное расположение окон.\n" "Как обращаться с окнами. Начальное расположение окон.\n"
"Сопротивляемость границ. Сплошное/каркасное перемещение, и т.п." "Сопротивляемость границ. Сплошное/каркасное перемещение, и т.п."
#: ../../WPrefs.app/WindowHandling.c:474
msgid "by keyboard"
msgstr "c помощ.клав."
#: ../../WPrefs.app/WindowHandling.c:490
msgid "...do not cover:"
msgstr "не перекрывать:"
#: ../../WPrefs.app/WindowHandling.c:497
msgid "Icons"
msgstr "Иконок"
#: ../../WPrefs.app/WindowHandling.c:502
msgid "The dock"
msgstr "Дока"
#: ../../WPrefs.app/Workspace.c:176 #: ../../WPrefs.app/Workspace.c:176
msgid "Workspace Navigation" msgid "Workspace Navigation"
msgstr "Навигация по рабочим пространствам" msgstr "Навигация по рабочим пространствам"
+2627
View File
File diff suppressed because it is too large Load Diff
+3 -3
View File
@@ -36,7 +36,7 @@ menu.ja Japanese MANOME Tomonori <manome@itlb.te.noda.sut.ac.jp>
ABE Shige <sabe@ibm.net> ABE Shige <sabe@ibm.net>
menu.pt Portuguese Alfredo K. Kojima <kojima@inf.ufrgs.br> menu.pt Portuguese Alfredo K. Kojima <kojima@inf.ufrgs.br>
menu.de German Carsten Schaar <nhadcasc@fs-maphy.uni-hannover.de> 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> menu.ko Korean Chae-Yong Chong <cychong@metro.telecom.samsung.co.kr>
Byeong-Chan Kim <redhands@linux.sarang.net> Byeong-Chan Kim <redhands@linux.sarang.net>
menu.gl Galician Xose Vazquez <xose@arrakis.es> 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.it Italian Roberto Checozzo <croberto@aerre.it>
menu.ru Russian August S.Sigov <freedomain@actor.ru> menu.ru Russian August S.Sigov <freedomain@actor.ru>
menu.es Spanish Rodrigo Hornos Prados <tnetrhp@ctv.es> 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 menu.he Hebrew Please send me your name/email if you wrote this
We unfortunately lost that info :( We unfortunately lost that info :(
menu.tr Turkish F. Kagan Gurkaynak <kgf@wpi.edu> 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> Jacob Sparre Andersen <sparre@cats.nbi.dk>
menu.sl Slovene Alen Salamun <snowman@hal9000.medinet.si> menu.sl Slovene Alen Salamun <snowman@hal9000.medinet.si>
menu.hu Hungarian Csanaki Csaba <prew@mail.matav.hu> 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_TW.Big5 Chinese Li Wei Jih <lwj83@cs.ccu.edu.tw>
menu.zh_CN Chinese Wang Jian <wangjian2@asiainfo.com> menu.zh_CN Chinese Wang Jian <wangjian2@asiainfo.com>
menu.pl Polish Maciej Friedel <tytus@tytus.itma.pwr.wroc.pl> menu.pl Polish Maciej Friedel <tytus@tytus.itma.pwr.wroc.pl>
+1 -1
View File
@@ -53,7 +53,7 @@
* // it in current position * // it in current position
* OPEN_MENU file.menu * OPEN_MENU file.menu
* 2. Pipe menu handling. * 2. Pipe menu handling.
* // opens command and uses it's stdout to construct menu. * // opens command and uses its stdout to construct menu.
* // Command's output must be a valid menu description. * // Command's output must be a valid menu description.
* // The space between '|' and command itself is optional. * // The space between '|' and command itself is optional.
* OPEN_MENU | command * OPEN_MENU | command
+1 -1
View File
@@ -45,7 +45,7 @@
* // it in current position * // it in current position
* OPEN_MENU file.menu * OPEN_MENU file.menu
* 2. Pipe menu handling. * 2. Pipe menu handling.
* // opens command and uses it's stdout to construct menu. * // opens command and uses its stdout to construct menu.
* // Command's output must be a valid menu description. * // Command's output must be a valid menu description.
* // The space between '|' and command itself is optional. * // The space between '|' and command itself is optional.
* OPEN_MENU | command * OPEN_MENU | command
+1 -1
View File
@@ -45,7 +45,7 @@
* // it in current position * // it in current position
* OPEN_MENU file.menu * OPEN_MENU file.menu
* 2. Pipe menu handling. * 2. Pipe menu handling.
* // opens command and uses it's stdout to construct menu. * // opens command and uses its stdout to construct menu.
* // Command's output must be a valid menu description. * // Command's output must be a valid menu description.
* // The space between '|' and command itself is optional. * // The space between '|' and command itself is optional.
* OPEN_MENU | command * OPEN_MENU | command
+1 -1
View File
@@ -53,7 +53,7 @@
* // it in current position * // it in current position
* OPEN_MENU file.menu * OPEN_MENU file.menu
* 2. Pipe menu handling. * 2. Pipe menu handling.
* // opens command and uses it's stdout to construct menu. * // opens command and uses its stdout to construct menu.
* // Command's output must be a valid menu description. * // Command's output must be a valid menu description.
* // The space between '|' and command itself is optional. * // The space between '|' and command itself is optional.
* OPEN_MENU | command * OPEN_MENU | command
+1 -1
View File
@@ -53,7 +53,7 @@
* // it in current position * // it in current position
* OPEN_MENU file.menu * OPEN_MENU file.menu
* 2. Pipe menu handling. * 2. Pipe menu handling.
* // opens command and uses it's stdout to construct menu. * // opens command and uses its stdout to construct menu.
* // Command's output must be a valid menu description. * // Command's output must be a valid menu description.
* // The space between '|' and command itself is optional. * // The space between '|' and command itself is optional.
* OPEN_MENU | command * OPEN_MENU | command
+1 -1
View File
@@ -53,7 +53,7 @@
* // it in current position * // it in current position
* OPEN_MENU file.menu * OPEN_MENU file.menu
* 2. Pipe menu handling. * 2. Pipe menu handling.
* // opens command and uses it's stdout to construct menu. * // opens command and uses its stdout to construct menu.
* // Command's output must be a valid menu description. * // Command's output must be a valid menu description.
* // The space between '|' and command itself is optional. * // The space between '|' and command itself is optional.
* OPEN_MENU | command * OPEN_MENU | command
+1 -1
View File
@@ -52,7 +52,7 @@
* // it in current position * // it in current position
* OPEN_MENU file.menu * OPEN_MENU file.menu
* 2. Pipe menu handling. * 2. Pipe menu handling.
* // opens command and uses it's stdout to construct menu. * // opens command and uses its stdout to construct menu.
* // Command's output must be a valid menu description. * // Command's output must be a valid menu description.
* // The space between '|' and command itself is optional. * // The space between '|' and command itself is optional.
* OPEN_MENU | command * OPEN_MENU | command
+8 -6
View File
@@ -2419,8 +2419,10 @@ sub process {
# function brace can't be on same line, except for #defines of do while, # function brace can't be on same line, except for #defines of do while,
# or if closed on same line # or if closed on same line
if (($line=~/$Type\s*$Ident\(.*\).*\s{/) and if ($line =~ /$Type\s*$Ident\s*$balanced_parens\s*\{/ &&
!($line=~/\#\s*define.*do\s{/) and !($line=~/}/)) { $line !~ /\#\s*define\b.*do\s*\{/ &&
$line !~ /}/) {
ERROR("OPEN_BRACE", ERROR("OPEN_BRACE",
"open brace '{' following function declarations go on the next line\n" . $herecurr); "open brace '{' following function declarations go on the next line\n" . $herecurr);
} }
@@ -2847,12 +2849,12 @@ sub process {
#need space before brace following if, while, etc #need space before brace following if, while, etc
if (($line =~ /\(.*\){/ && $line !~ /\($Type\){/) || if (($line =~ /\(.*\)\{/ && $line !~ /\($Type\)\{/) ||
$line =~ /do{/) { $line =~ /\b(?:else|do)\{/) {
if (ERROR("SPACING", if (ERROR("SPACING",
"space required before the open brace '{'\n" . $herecurr) && "space required before the open brace '{'\n" . $herecurr) &&
$fix) { $fix) {
$fixed[$linenr - 1] =~ s/^(\+.*(?:do|\))){/$1 {/; $fixed[$linenr - 1] =~ s/^(\+.*(?:do|else|\)))\{/$1 {/;
} }
} }
@@ -3198,7 +3200,7 @@ sub process {
$dstat !~ /^for\s*$Constant$/ && # for (...) $dstat !~ /^for\s*$Constant$/ && # for (...)
$dstat !~ /^for\s*$Constant\s+(?:$Ident|-?$Constant)$/ && # for (...) bar() $dstat !~ /^for\s*$Constant\s+(?:$Ident|-?$Constant)$/ && # for (...) bar()
$dstat !~ /^do\s*{/ && # do {... $dstat !~ /^do\s*{/ && # do {...
$dstat !~ /^\({/ && # ({... $dstat !~ /^\(\{/ && # ({...
$ctx !~ /^.\s*#\s*define\s+TRACE_(?:SYSTEM|INCLUDE_FILE|INCLUDE_PATH)\b/) $ctx !~ /^.\s*#\s*define\s+TRACE_(?:SYSTEM|INCLUDE_FILE|INCLUDE_PATH)\b/)
{ {
$ctx =~ s/\n*$//; $ctx =~ s/\n*$//;
+54 -71
View File
@@ -41,7 +41,7 @@ AC_CONFIG_HEADERS([config.h])
dnl We need the EXTRA_xxx_DEPENDENCIES keyword in Makefiles which have been dnl We need the EXTRA_xxx_DEPENDENCIES keyword in Makefiles which have been
dnl introduced in the version 1.11.3; because the 1.12 was realeased shortly dnl introduced in the version 1.11.3; because the 1.12 was realeased shortly
dnl after, we just ask for it dnl after, we just ask for it
AM_INIT_AUTOMAKE([1.12 silent-rules]) AM_INIT_AUTOMAKE([1.12 silent-rules -Wno-portability])
dnl Reference file used by 'configure' to make sure the path to sources is valid dnl Reference file used by 'configure' to make sure the path to sources is valid
AC_CONFIG_SRCDIR([src/WindowMaker.h]) AC_CONFIG_SRCDIR([src/WindowMaker.h])
@@ -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 Support for Nested Functions by the compiler
dnl ============================================ dnl ============================================
WM_PROG_CC_NESTEDFUNC WM_PROG_CC_NESTEDFUNC
@@ -284,18 +296,14 @@ _bindir=`eval echo $_bindir`
_libdir=`eval echo $libdir` _libdir=`eval echo $libdir`
_libdir=`eval echo $_libdir` _libdir=`eval echo $_libdir`
lib_search_path='-L${libdir}'
inc_search_path='-I${includedir}'
dnl =============================================== dnl ===============================================
dnl Specify paths to look for libraries and headers dnl Specify paths to look for libraries and headers
dnl =============================================== dnl ===============================================
AC_ARG_WITH(libs-from, AS_HELP_STRING([--with-libs-from], [pass compiler flags to look for libraries]), AC_ARG_WITH(libs-from, AS_HELP_STRING([--with-libs-from], [pass compiler flags to look for libraries]),
[lib_search_path="$withval $lib_search_path"]) [lib_search_path="$withval"], [lib_search_path='-L${libdir}'])
AC_ARG_WITH(incs-from, AS_HELP_STRING([--with-incs-from], [pass compiler flags to look for header files]), AC_ARG_WITH(incs-from, AS_HELP_STRING([--with-incs-from], [pass compiler flags to look for header files]),
[inc_search_path="$withval $inc_search_path"]) [inc_search_path="$withval"], [inc_search_path='-I${includedir}'])
dnl Features Configuration dnl Features Configuration
@@ -459,6 +467,7 @@ dnl that the gettext environment works
WM_I18N_LANGUAGES WM_I18N_LANGUAGES
WM_I18N_XGETTEXT WM_I18N_XGETTEXT
WM_I18N_MENUTEXTDOMAIN WM_I18N_MENUTEXTDOMAIN
WM_LIBRARY_CONSTRUCTORS
dnl =========================================== dnl ===========================================
dnl Stuff that uses X dnl Stuff that uses X
@@ -468,7 +477,7 @@ AC_PATH_XTRA
AS_IF([test "x$no_x" = "xyes"], AS_IF([test "x$no_x" = "xyes"],
[AC_MSG_ERROR([The path for the X11 files not found! [AC_MSG_ERROR([The path for the X11 files not found!
Make sure you have X and it's headers and libraries (the -devel packages Make sure you have X and its headers and libraries (the -devel packages
in Linux) installed.])]) in Linux) installed.])])
X_LIBRARY_PATH=$x_libraries X_LIBRARY_PATH=$x_libraries
@@ -618,72 +627,36 @@ AC_SUBST(FCLIBS)
dnl Xft2 antialiased font support dnl Xft2 antialiased font support
dnl ============================= 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 support
dnl ============= dnl =============
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([--enable-pango], [enable Pango text layout support]), AC_ARG_ENABLE([pango],
pango=$enableval, pango=no) [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 ==============================================
dnl Graphic Format Libraries dnl Graphic Format Libraries
@@ -910,7 +883,7 @@ AC_CONFIG_FILES(
Makefile Makefile
dnl WRaster Library dnl WRaster Library
wrlib/Makefile wrlib/Makefile wrlib/po/Makefile
wrlib/tests/Makefile wrlib/tests/Makefile
dnl WINGs toolkit dnl WINGs toolkit
@@ -955,9 +928,10 @@ echo "Supported core features: :$supported_core"
echo "Supported X extensions: :$supported_xext" echo "Supported X extensions: :$supported_xext"
echo "Supported graphic format libraries :$supported_gfx" echo "Supported graphic format libraries :$supported_gfx"
echo "Unsupported features :$unsupported" echo "Unsupported features :$unsupported"
echo "Antialiased text support in WINGs : $xft"
echo "Pango text layout support in WINGs : $pango" echo "Pango text layout support in WINGs : $pango"
echo "Translated languages to support :$supported_locales" 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_IF([test "x$debug" = "xyes"],
[AS_ECHO(["Debug enabled: CFLAGS = $CFLAGS"]) ]) [AS_ECHO(["Debug enabled: CFLAGS = $CFLAGS"]) ])
echo echo
@@ -982,6 +956,15 @@ AS_IF([test "x$enable_jpeg" = xno], [dnl
AS_ECHO(["WARNING WARNING WARNING WARNING WARNING WARNING WARNING"])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 This is for Emacs. I'm lazy, I know... (nicolai)
dnl ================================================ 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
Binary file not shown.

Before

Width:  |  Height:  |  Size: 182 KiB

Binary file not shown.
-1
View File
@@ -1 +0,0 @@
"menu.hook"
-56
View File
@@ -1,56 +0,0 @@
{
Logo.WMDock = {Icon = GNUstep.tiff;};
Logo.WMPanel = {Icon = GNUstep.tiff;};
Tile.WMClip = {Icon = clip.tiff;};
WPrefs = {Icon = "/usr/share/lib/GNUstep/System/Applications/WPrefs.app/WPrefs.tiff";};
Dockit = {Icon = GNUstep.tiff;};
WMSoundServer = {Icon = Sound.tiff;};
"*" = {Icon = defaultAppIcon.tiff;};
Rxvt = {Icon = GNUterm.tiff;};
KTerm = {Icon = GNUterm.tiff;};
NXTerm = {Icon = GNUterm.tiff;};
XTerm = {Icon = GNUterm.tiff;};
Netscape = {Icon = "wmaker-netscape.tif";};
"Mozilla-bin" = {Icon = "wmaker-nav.tif";};
emacs = {Icon = "wmaker-emacs.tif";};
Gimp = {AlwaysUserIcon = Yes;Icon = "wmaker-gimp2.tif";};
toolbox.Gimp = {NoAppIcon = Yes;Icon = "wmaker-gimp2.tif";};
gimp_startup.Gimp = {
Icon = "wmaker-gimp2.tif";
AlwaysUserIcon = Yes;
NoTitlebar = Yes;
NoResizebar = Yes;
NotClosable = Yes;
NotMiniaturizable = Yes;
};
tip_of_the_day.Gimp = {
Icon = "wmaker-gimp2.tif";
AlwaysUserIcon = Yes;
NoResizebar = Yes;
NoCloseButton = Yes;
NoMiniaturizeButton = Yes;
KeepOnTop = Yes;
};
image_window.Gimp = {Icon = "wmaker-gimp-work.tif";AlwaysUserIcon = Yes;};
brushselection.Gimp = {Icon = "wmaker-gimp-brushes.tif";AlwaysUserIcon = Yes;};
patternselection.Gimp = {Icon = "wmaker-gimp-patterns.tif";AlwaysUserIcon = Yes;};
color_palette.Gimp = {
Icon = "wmaker-gimp-palette.tif";
AlwaysUserIcon = Yes;
NoResizebar = Yes;
};
gradient_editor.Gimp = {Icon = "wmaker-gimp-gradient.tif";AlwaysUserIcon = Yes;};
tool_options.Gimp = {Icon = "wmaker-gimp-tooloption.tif";AlwaysUserIcon = Yes;};
layers_and_channels.Gimp = {Icon = "wmaker-gimp-layers.tif";AlwaysUserIcon = Yes;};
indexed_color_palette.Gimp = {
Icon = "wmaker-gimp-palette.tif";
AlwaysUserIcon = Yes;
NoResizebar = Yes;
};
"Script-fu" = {Icon = "wmaker-gimp-script-fu.tif";};
"script-fu.Script-fu" = {Icon = "wmaker-gimp-script-fu.tif";};
preferences.Gimp = {Icon = "wmaker-gimp-prefs.tif";AlwaysUserIcon = Yes;};
panel = {NoAppIcon = Yes;};
gmc = {NoAppIcon = Yes;Omnipresent = Yes;SkipWindowList = Yes;};
Logo.WMClip = {Icon = clip.tiff;};
}
-141
View File
@@ -1,141 +0,0 @@
{
LargeDisplayFont = "-*-helvetica-bold-r-normal-*-24-*-*-*-*-*-*-*";
MultiByteText = AUTO;
KbdModeLock = NO;
SmoothWorkspaceBack = NO;
WindozeCycling = NO;
PopupSwitchMenu = NO;
DisableMiniwindows = NO;
OpenTransientOnOwnerWorkspace = NO;
EdgeResistance = 30;
IconificationStyle = Zoom;
IconPath = (
"~/GNUstep/Library/Icons",
"~/GNUstep/Library/WindowMaker/Pixmaps",
"~/GNUstep/Library/WindowMaker/CachedPixmaps",
"/usr/share/WindowMaker/Icons",
"/usr/share/WindowMaker/Pixmaps",
"/usr/share/icons",
"/usr/local/share/WindowMaker/Icons",
"/usr/local/share/WindowMaker/Pixmaps",
"/usr/local/share/icons"
);
PixmapPath = (
"~/GNUstep/Library/WindowMaker/Pixmaps",
"~/GNUstep/Library/WindowMaker/Backgrounds",
"~/GNUstep/Library/WindowMaker/CachedPixmaps",
"/usr/share/WindowMaker/Backgrounds",
"/usr/share/WindowMaker/Pixmaps",
"/usr/share/pixmaps",
"/usr/local/share/WindowMaker/Pixmaps",
"/usr/local/share/WindowMaker/Backgrounds",
"/usr/local/share/pixmaps"
);
WindowTitleBalloons = YES;
IconSize = 64;
FocusMode = manual;
DisableWSMouseActions = NO;
MouseLeftButtonAction = SelectWindows;
MouseMiddleButtonAction = OpenWindowListMenu;
MouseRightButtonAction = OpenApplicationsMenu;
MouseWheelAction = None;
ColormapSize = 4;
DisableDithering = NO;
ModifierKey = Mod1;
NewStyle = "new";
DisableDock = NO;
DisableClip = NO;
Superfluous = NO;
StickyIcons = NO;
SaveSessionOnExit = NO;
ColormapMode = auto;
RaiseDelay = 0;
AutoFocus = YES;
WindowPlacement = auto;
WindowPlaceOrigin = (64, 64);
UseSaveUnders = NO;
DisableSound = NO;
DisableAnimations = NO;
DontLinkWorkspaces = YES;
AutoArrangeIcons = NO;
AdvanceToNewWorkspace = NO;
CycleWorkspaces = NO;
ResizeDisplay = line;
MoveDisplay = floating;
OpaqueMove = YES;
IconPosition = "blh";
WrapMenus = NO;
ScrollableMenus = YES;
MenuScrollSpeed = fast;
IconSlideSpeed = fast;
ShadeSpeed = fast;
DoubleClickTime = 250;
AlignSubmenus = NO;
NoWindowOverIcons = NO;
IgnoreFocusClick = NO;
CloseKey = None;
MaximizeKey = None;
VMaximizeKey = None;
RaiseLowerKey = None;
DontConfirmKill = NO;
ShadeKey = None;
NextWorkspaceKey = "Mod1+Control+Right";
PrevWorkspaceKey = "Mod1+Control+Left";
RootMenuKey = F12;
WindowListKey = F11;
WindowMenuKey = "Control+Escape";
RaiseKey = "Mod1+Up";
LowerKey = "Mod1+Down";
FocusNextKey = "Mod1+Tab";
FocusPrevKey = "Mod1+Shift+Tab";
Workspace1Key = "Mod1+1";
Workspace2Key = "Mod1+2";
Workspace3Key = "Mod1+3";
Workspace4Key = "Mod1+4";
Workspace5Key = "Mod1+5";
Workspace6Key = "Mod1+6";
Workspace7Key = "Mod1+7";
Workspace8Key = "Mod1+8";
Workspace9Key = "Mod1+9";
Workspace10Key = "Mod1+0";
HideKey = "Mod1+H";
SelectKey = None;
MiniaturizeKey = "Mod1+M";
NextWorkspaceLayerKey = None;
PrevWorkspaceLayerKey = None;
ClipLowerKey = None;
ClipRaiseKey = None;
ConstrainWindowSize = NO;
ClipRaiseLowerKey = None;
TitleJustify = center;
WindowTitleFont = "-*-helvetica-bold-r-normal-*-12-*-*-*-*-*-*-*";
MenuTitleFont = "-*-helvetica-bold-r-normal-*-12-*-*-*-*-*-*-*";
MenuTextFont = "-*-helvetica-bold-r-normal-*-12-*-*-*-*-*-*-*";
IconTitleFont = "-*-helvetica-bold-r-normal-*-9-*-*-*-*-*-*-*";
ClipTitleFont = "Verdana:bold:pixelsize=10";
HighlightColor = white;
HighlightTextColor = black;
ClipTitleColor = black;
CClipTitleColor = gray20;
FTitleColor = white;
PTitleColor = white;
UTitleColor = black;
FTitleBack = (solid, black);
PTitleBack = (solid, gray40);
UTitleBack = (solid, "rgb:aa/aa/aa");
MenuTitleColor = white;
MenuTextColor = black;
MenuDisabledColor = gray40;
MenuTitleBack = (solid, black);
MenuTextBack = (solid, "rgb:aa/aa/aa");
WorkspaceBack = (
spixmap,
"/usr/share/WindowMaker/Backgrounds/debian.tiff",
gray20
);
IconBack = (dgradient, "rgb:a6/a6/b6", "rgb:51/55/61");
IconTitleColor = white;
IconTitleBack = black;
ResizebarBack = (solid, "rgb:aa/aa/aa");
MenuStyle = normal;
}
-29
View File
@@ -1,29 +0,0 @@
(
Debian,
(
Applications,
OPEN_PLMENU,
"|| wmmenugen -parser:xdg /usr/share/applications/"
),
(Run..., EXEC, "%A(Run,Type command to run)"),
(
"Window Maker",
("Info Panel ...", INFO_PANEL),
("Legal Panel ...", LEGAL_PANEL),
(Preferences, EXEC, WPrefs),
("Refresh screen", REFRESH),
(Restart, RESTART)
),
(
WorkSpace,
(Appearance, OPEN_MENU, appearance.menu),
("Arrange Icons", ARRANGE_ICONS),
("Clear Session", CLEAR_SESSION),
("Hide Others", HIDE_OTHERS),
("Save Session", SAVE_SESSION),
("Show All", SHOW_ALL),
(Workspaces, WORKSPACE_MENU)
),
(Exit, EXIT),
("Exit session", SHUTDOWN)
)
-76
View File
@@ -1,76 +0,0 @@
#!/bin/sh
set -e
[ -n "$WMAKER_USER_ROOT" ] || export WMAKER_USER_ROOT="$HOME/GNUstep"
gs_base="$WMAKER_USER_ROOT"
gs_defaults="$gs_base/Defaults"
gs_system_defaults=/etc/GNUstep/Defaults
wm_base="$gs_base/Library/WindowMaker"
wm_backgrounds="$wm_base/Backgrounds"
wm_iconsets="$wm_base/IconSets"
wm_pixmaps="$wm_base/Pixmaps"
gs_icons="$gs_base/Library/Icons"
wm_style="$wm_base/Style"
wm_styles="$wm_base/Styles"
wm_themes="$wm_base/Themes"
WindowMaker=/usr/lib/WindowMaker/wmaker
convertfonts=/usr/lib/WindowMaker/convertfonts
make_dir_if_needed ()
{
if [ ! -d "$1" ] ; then
install -m 0755 -d "$1"
fi
}
rename_dir_if_possible ()
{
if [ ! -d "$2" ] ; then
if [ -d "$1" ] ; then
mv "$1" "$2"
fi
fi
}
copy_defaults_if_needed ()
{
file="$gs_defaults/$1"
system_file="$gs_system_defaults/$1"
if [ ! -f "$file" ] ; then
install -m 0644 "$system_file" "$file"
fi
}
make_dir_if_needed "$gs_defaults"
make_dir_if_needed "$wm_base"
make_dir_if_needed "$wm_backgrounds"
make_dir_if_needed "$wm_iconsets"
make_dir_if_needed "$wm_pixmaps"
make_dir_if_needed "$gs_icons"
rename_dir_if_possible "$wm_style" "$wm_styles"
make_dir_if_needed "$wm_styles"
make_dir_if_needed "$wm_themes"
copy_defaults_if_needed WindowMaker
copy_defaults_if_needed WMRootMenu
copy_defaults_if_needed WMState
#copy_defaults_if_needed WMWindowAttributes
if [ -x $convertfonts -a ! -e "$wm_base/.fonts_converted" ] ; then
# --keep-xlfd is used in order to preserve the original information
$convertfonts --keep-xlfd "$gs_defaults/WindowMaker"
if [ -f "$gs_defaults/WMGLOBAL" ] ; then
$convertfonts --keep-xlfd "$gs_defaults/WMGLOBAL"
fi
find "$wm_styles" -mindepth 1 -maxdepth 1 -type f -print0 |
xargs -0 -r -n 1 $convertfonts --keep-xlfd
touch "$wm_base/.fonts_converted"
fi
if [ -n "$1" -a -x "$WindowMaker$1" ] ; then
WindowMaker="$WindowMaker$1"
shift
fi
exec "$WindowMaker" "$@"
-8
View File
@@ -1,8 +0,0 @@
[Desktop Entry]
Name=Window Maker
Comment=This session logs you into Window Maker
Exec=/usr/bin/wmaker
# no icon yet, only the top three are currently used
Icon=
Keywords=Window Manager
Type=Application
-1
View File
@@ -1 +0,0 @@
WINGs/README
-2
View File
@@ -1,2 +0,0 @@
WINGs/Examples/*.c
WINGs/Examples/README
-9
View File
@@ -1,9 +0,0 @@
usr/include/WINGs/WINGs.h
usr/include/WINGs/WINGsP.h
usr/include/WINGs/WUtil.h
usr/lib/*/libWINGs.a
usr/lib/*/libWINGs.so
usr/lib/*/libWUtil.a
usr/lib/*/libWUtil.so
usr/lib/*/pkgconfig/WINGs.pc
usr/lib/*/pkgconfig/WUtil.pc
-1
View File
@@ -1 +0,0 @@
usr/lib/*/libWINGs.so.*
-600
View File
@@ -1,600 +0,0 @@
libWINGs.so.3 libwings3 #MINVER#
WINGsConfiguration@Base 0.95.0
WMAddBoxSubview@Base 0.95.0
WMAddBoxSubviewAtEnd@Base 0.95.0
WMAddBrowserColumn@Base 0.95.0
WMAddItemInTabView@Base 0.95.0
WMAddPopUpButtonItem@Base 0.95.0
WMAddSplitViewSubview@Base 0.95.0
WMAddTabViewItemWithView@Base 0.95.0
WMAdjustSplitViewSubviews@Base 0.95.0
WMAppendTextBlock@Base 0.95.0
WMAppendTextStream@Base 0.95.0
WMBlackColor@Base 0.95.0
WMBlueComponentOfColor@Base 0.95.0
WMBoldSystemFontOfSize@Base 0.95.0
WMBreakModalLoop@Base 0.95.0
WMBrowserAllowsEmptySelection@Base 0.95.0
WMBrowserAllowsMultipleSelection@Base 0.95.0
WMChangePanelOwner@Base 0.95.0
WMClearList@Base 0.95.0
WMCloseColorPanel@Base 0.95.0
WMCloseWindow@Base 0.95.0
WMColorGC@Base 0.95.0
WMColorPanelColorChangedNotification@Base 0.95.0
WMColorPixel@Base 0.95.0
WMColorWellDidChangeNotification@Base 0.95.0
WMCopyFontWithStyle@Base 0.95.0
WMCreateAlertPanel@Base 0.95.0
WMCreateApplicationIconBlendedPixmap@Base 0.95.0
WMCreateBlendedPixmapFromFile@Base 0.95.0
WMCreateBlendedPixmapFromRImage@Base 0.95.0
WMCreateBox@Base 0.95.0
WMCreateBrowser@Base 0.95.0
WMCreateButton@Base 0.95.0
WMCreateColorWell@Base 0.95.0
WMCreateCustomButton@Base 0.95.0
WMCreateDragHandler@Base 0.95.0
WMCreateDragOperationArray@Base 0.95.0
WMCreateDragOperationItem@Base 0.95.0
WMCreateEventHandler@Base 0.95.0
WMCreateFont@Base 0.95.0
WMCreateFrame@Base 0.95.0
WMCreateGenericPanel@Base 0.95.0
WMCreateInputPanel@Base 0.95.0
WMCreateLabel@Base 0.95.0
WMCreateList@Base 0.95.0
WMCreateMenuItem@Base 0.95.0
WMCreateNamedColor@Base 0.95.0
WMCreatePanelForWindow@Base 0.95.0
WMCreatePanelWithStyleForWindow@Base 0.95.0
WMCreatePixmap@Base 0.95.0
WMCreatePixmapFromFile@Base 0.95.0
WMCreatePixmapFromRImage@Base 0.95.0
WMCreatePixmapFromXPMData@Base 0.95.0
WMCreatePixmapFromXPixmaps@Base 0.95.0
WMCreatePopUpButton@Base 0.95.0
WMCreateProgressIndicator@Base 0.95.0
WMCreateRGBAColor@Base 0.95.0
WMCreateRGBColor@Base 0.95.0
WMCreateRuler@Base 0.95.0
WMCreateScaledBlendedPixmapFromFile@Base 0.95.6
WMCreateScreen@Base 0.95.0
WMCreateScreenWithRContext@Base 0.95.0
WMCreateScrollView@Base 0.95.0
WMCreateScroller@Base 0.95.0
WMCreateSelectionHandler@Base 0.95.0
WMCreateSimpleApplicationScreen@Base 0.95.0
WMCreateSlider@Base 0.95.0
WMCreateSplitView@Base 0.95.0
WMCreateTabView@Base 0.95.0
WMCreateTabViewItem@Base 0.95.0
WMCreateTabViewItemWithIdentifier@Base 0.95.0
WMCreateTextBlockWithObject@Base 0.95.0
WMCreateTextBlockWithPixmap@Base 0.95.0
WMCreateTextBlockWithText@Base 0.95.0
WMCreateTextField@Base 0.95.0
WMCreateTextForDocumentType@Base 0.95.0
WMCreateWindow@Base 0.95.0
WMCreateWindowWithStyle@Base 0.95.0
WMDarkGrayColor@Base 0.95.0
WMDefaultBoldSystemFont@Base 0.95.0
WMDefaultSystemFont@Base 0.95.0
WMDeleteDragHandler@Base 0.95.0
WMDeleteEventHandler@Base 0.95.0
WMDeleteSelectionHandler@Base 0.95.0
WMDeleteTextFieldRange@Base 0.95.0
WMDestroyAlertPanel@Base 0.95.0
WMDestroyGenericPanel@Base 0.95.0
WMDestroyInputPanel@Base 0.95.0
WMDestroyMenuItem@Base 0.95.0
WMDestroyTabViewItem@Base 0.95.0
WMDestroyTextBlock@Base 0.95.0
WMDestroyWidget@Base 0.95.0
WMDragImageFromView@Base 0.95.0
WMDrawImageString@Base 0.95.0
WMDrawPixmap@Base 0.95.0
WMDrawString@Base 0.95.0
WMFindInTextStream@Base 0.95.0
WMFindRowOfListItemWithTitle@Base 0.95.0
WMFontHeight@Base 0.95.0
WMFontPanelFontChangedNotification@Base 0.95.0
WMFreeColorPanel@Base 0.95.0
WMFreeFilePanel@Base 0.95.0
WMFreeFontPanel@Base 0.95.0
WMFreezeText@Base 0.95.0
WMGetApplicationIconImage@Base 0.95.0
WMGetApplicationIconPixmap@Base 0.95.0
WMGetBrowserFirstVisibleColumn@Base 0.95.0
WMGetBrowserListInColumn@Base 0.95.0
WMGetBrowserMaxVisibleColumns@Base 0.95.0
WMGetBrowserNumberOfColumns@Base 0.95.0
WMGetBrowserPath@Base 0.95.0
WMGetBrowserPathToColumn@Base 0.95.0
WMGetBrowserPaths@Base 0.95.0
WMGetBrowserSelectedColumn@Base 0.95.0
WMGetBrowserSelectedItemInColumn@Base 0.95.0
WMGetBrowserSelectedRowInColumn@Base 0.95.0
WMGetButtonEnabled@Base 0.95.0
WMGetButtonSelected@Base 0.95.0
WMGetButtonText@Base 0.95.7
WMGetColorAlpha@Base 0.95.0
WMGetColorPanel@Base 0.95.0
WMGetColorPanelColor@Base 0.95.0
WMGetColorRGBDescription@Base 0.95.0
WMGetColorWellColor@Base 0.95.0
WMGetDragOperationItemText@Base 0.95.0
WMGetDragOperationItemType@Base 0.95.0
WMGetFilePanelAccessoryView@Base 0.95.0
WMGetFilePanelFileName@Base 0.95.0
WMGetFontName@Base 0.95.0
WMGetFontPanel@Base 0.95.0
WMGetFontPanelFont@Base 0.95.0
WMGetGrabbedRulerMargin@Base 0.95.0
WMGetHangedData@Base 0.95.0
WMGetLabelFont@Base 0.95.0
WMGetLabelImage@Base 0.95.0
WMGetLabelText@Base 0.95.0
WMGetListItem@Base 0.95.0
WMGetListItemHeight@Base 0.95.0
WMGetListItems@Base 0.95.0
WMGetListNumberOfRows@Base 0.95.0
WMGetListPosition@Base 0.95.0
WMGetListSelectedItem@Base 0.95.0
WMGetListSelectedItemRow@Base 0.95.0
WMGetListSelectedItems@Base 0.95.0
WMGetMenuItemAction@Base 0.95.0
WMGetMenuItemData@Base 0.95.0
WMGetMenuItemEnabled@Base 0.95.0
WMGetMenuItemMixedStatePixmap@Base 0.95.0
WMGetMenuItemOffStatePixmap@Base 0.95.0
WMGetMenuItemOnStatePixmap@Base 0.95.0
WMGetMenuItemPixmap@Base 0.95.0
WMGetMenuItemRepresentedObject@Base 0.95.0
WMGetMenuItemShortcut@Base 0.95.0
WMGetMenuItemShortcutModifierMask@Base 0.95.0
WMGetMenuItemState@Base 0.95.0
WMGetMenuItemTitle@Base 0.95.0
WMGetOpenPanel@Base 0.95.0
WMGetPixmapMaskXID@Base 0.95.0
WMGetPixmapSize@Base 0.95.0
WMGetPixmapXID@Base 0.95.0
WMGetPopUpButtonEnabled@Base 0.95.0
WMGetPopUpButtonItem@Base 0.95.0
WMGetPopUpButtonItemEnabled@Base 0.95.0
WMGetPopUpButtonMenuItem@Base 0.95.0
WMGetPopUpButtonNumberOfItems@Base 0.95.0
WMGetPopUpButtonSelectedItem@Base 0.95.0
WMGetProgressIndicatorMaxValue@Base 0.95.0
WMGetProgressIndicatorMinValue@Base 0.95.0
WMGetProgressIndicatorValue@Base 0.95.0
WMGetRColorFromColor@Base 0.95.0
WMGetReleasedRulerMargin@Base 0.95.0
WMGetRulerMargins@Base 0.95.0
WMGetRulerOffset@Base 0.95.0
WMGetSavePanel@Base 0.95.0
WMGetScrollViewHorizontalScroller@Base 0.95.0
WMGetScrollViewVerticalScroller@Base 0.95.0
WMGetScrollViewVisibleRect@Base 0.95.0
WMGetScrollerHitPart@Base 0.95.0
WMGetScrollerKnobProportion@Base 0.95.0
WMGetScrollerValue@Base 0.95.0
WMGetSelectedTabViewItem@Base 0.95.0
WMGetSeparatorMenuItem@Base 0.95.0
WMGetSliderMaxValue@Base 0.95.0
WMGetSliderMinValue@Base 0.95.0
WMGetSliderValue@Base 0.95.0
WMGetSplitViewDividerThickness@Base 0.95.0
WMGetSplitViewSubviewAt@Base 0.95.0
WMGetSplitViewSubviewsCount@Base 0.95.0
WMGetSplitViewVertical@Base 0.95.0
WMGetSystemPixmap@Base 0.95.0
WMGetTabViewItemIdentifier@Base 0.95.0
WMGetTabViewItemLabel@Base 0.95.0
WMGetTabViewItemView@Base 0.95.0
WMGetTextBlockProperties@Base 0.95.0
WMGetTextDefaultColor@Base 0.95.0
WMGetTextDefaultFont@Base 0.95.0
WMGetTextEditable@Base 0.95.0
WMGetTextFieldCursorPosition@Base 0.95.0
WMGetTextFieldDelegate@Base 0.95.0
WMGetTextFieldEditable@Base 0.95.0
WMGetTextFieldFont@Base 0.95.0
WMGetTextFieldText@Base 0.95.0
WMGetTextIgnoresNewline@Base 0.95.0
WMGetTextInsertType@Base 0.95.0
WMGetTextObjects@Base 0.95.0
WMGetTextRulerShown@Base 0.95.0
WMGetTextSelectedObjects@Base 0.95.0
WMGetTextSelectedStream@Base 0.95.0
WMGetTextSelectionColor@Base 0.95.0
WMGetTextSelectionFont@Base 0.95.0
WMGetTextSelectionUnderlined@Base 0.95.0
WMGetTextStream@Base 0.95.0
WMGetTextUsesMonoFont@Base 0.95.0
WMGetViewPosition@Base 0.95.0
WMGetViewScreenPosition@Base 0.95.0
WMGetViewSize@Base 0.95.0
WMGetWidgetBackgroundColor@Base 0.95.0
WMGetWidgetBackgroundPixmap@Base 0.95.7
WMGrayColor@Base 0.95.0
WMGreenComponentOfColor@Base 0.95.0
WMGroupButtons@Base 0.95.0
WMHandleEvent@Base 0.95.0
WMHangData@Base 0.95.0
WMHideFontPanel@Base 0.95.0
WMHookEventHandler@Base 0.95.0
WMInsertBrowserItem@Base 0.95.0
WMInsertItemInTabView@Base 0.95.0
WMInsertListItem@Base 0.95.0
WMInsertPopUpButtonItem@Base 0.95.0
WMInsertTextFieldText@Base 0.95.0
WMIsAntialiasingEnabled@Base 0.95.0
WMIsDoubleClick@Base 0.95.0
WMIsDraggingFromView@Base 0.95.0
WMIsMarginEqualToMargin@Base 0.95.0
WMListAllowsEmptySelection@Base 0.95.0
WMListAllowsMultipleSelection@Base 0.95.0
WMListDidScrollNotification@Base 0.95.0
WMListSelectionDidChangeNotification@Base 0.95.0
WMLoadBrowserColumnZero@Base 0.95.0
WMLowerWidget@Base 0.95.0
WMMapSubwidgets@Base 0.95.0
WMMapWidget@Base 0.95.0
WMMaskEvent@Base 0.95.0
WMMenuItemIsSeparator@Base 0.95.0
WMMoveWidget@Base 0.95.0
WMNextEvent@Base 0.95.0
WMOpenScreen@Base 0.95.0
WMPageText@Base 0.95.0
WMPaintColorSwatch@Base 0.95.0
WMPerformButtonClick@Base 0.95.0
WMPrependTextBlock@Base 0.95.0
WMPrependTextStream@Base 0.95.0
WMRaiseWidget@Base 0.95.0
WMRealizeWidget@Base 0.95.0
WMRedComponentOfColor@Base 0.95.0
WMRedisplayWidget@Base 0.95.0
WMRegisterViewForDraggedTypes@Base 0.95.0
WMRelayToNextResponder@Base 0.95.0
WMReleaseColor@Base 0.95.0
WMReleaseFont@Base 0.95.0
WMReleasePixmap@Base 0.95.0
WMReleaseViewDragImage@Base 0.95.0
WMRemoveBoxSubview@Base 0.95.0
WMRemoveBrowserItem@Base 0.95.0
WMRemoveListItem@Base 0.95.0
WMRemovePopUpButtonItem@Base 0.95.0
WMRemoveSplitViewSubview@Base 0.95.0
WMRemoveSplitViewSubviewAt@Base 0.95.0
WMRemoveTabViewItem@Base 0.95.0
WMRemoveTextBlock@Base 0.95.0
WMReparentWidget@Base 0.95.0
WMReplaceTextSelection@Base 0.95.0
WMRequestSelection@Base 0.95.0
WMResizeScrollViewContent@Base 0.95.0
WMResizeWidget@Base 0.95.0
WMRetainColor@Base 0.95.0
WMRetainFont@Base 0.95.0
WMRetainPixmap@Base 0.95.0
WMRunAlertPanel@Base 0.95.0
WMRunInputPanel@Base 0.95.0
WMRunModalFilePanelForDirectory@Base 0.95.0
WMRunModalLoop@Base 0.95.0
WMScreenDepth@Base 0.95.0
WMScreenDisplay@Base 0.95.0
WMScreenHeight@Base 0.95.0
WMScreenMainLoop@Base 0.95.0
WMScreenPending@Base 0.95.0
WMScreenRContext@Base 0.95.0
WMScreenWidth@Base 0.95.0
WMScrollText@Base 0.95.0
WMScrollViewScrollPoint@Base 0.95.0
WMScrollerDidScrollNotification@Base 0.95.0
WMSelectAllListItems@Base 0.95.0
WMSelectFirstTabViewItem@Base 0.95.0
WMSelectLastTabViewItem@Base 0.95.0
WMSelectListItem@Base 0.95.0
WMSelectListItemsInRange@Base 0.95.0
WMSelectNextTabViewItem@Base 0.95.0
WMSelectPreviousTabViewItem@Base 0.95.0
WMSelectTabViewItem@Base 0.95.0
WMSelectTabViewItemAtIndex@Base 0.95.0
WMSelectTextFieldRange@Base 0.95.0
WMSelectionOwnerDidChangeNotification@Base 0.95.0
WMSetApplicationHasAppIcon@Base 0.95.0
WMSetApplicationIconImage@Base 0.95.0
WMSetApplicationIconPixmap@Base 0.95.0
WMSetApplicationIconWindow@Base 0.95.0
WMSetBalloonDelay@Base 0.95.0
WMSetBalloonEnabled@Base 0.95.0
WMSetBalloonFont@Base 0.95.0
WMSetBalloonTextAlignment@Base 0.95.0
WMSetBalloonTextColor@Base 0.95.0
WMSetBalloonTextForView@Base 0.95.0
WMSetBoxBorderWidth@Base 0.95.0
WMSetBoxHorizontal@Base 0.95.0
WMSetBrowserAction@Base 0.95.0
WMSetBrowserAllowEmptySelection@Base 0.95.0
WMSetBrowserAllowMultipleSelection@Base 0.95.0
WMSetBrowserColumnTitle@Base 0.95.0
WMSetBrowserDelegate@Base 0.95.0
WMSetBrowserDoubleAction@Base 0.95.0
WMSetBrowserHasScroller@Base 0.95.0
WMSetBrowserMaxVisibleColumns@Base 0.95.0
WMSetBrowserPath@Base 0.95.0
WMSetBrowserPathSeparator@Base 0.95.0
WMSetBrowserTitled@Base 0.95.0
WMSetButtonAction@Base 0.95.0
WMSetButtonAltImage@Base 0.95.0
WMSetButtonAltText@Base 0.95.0
WMSetButtonAltTextColor@Base 0.95.0
WMSetButtonBordered@Base 0.95.0
WMSetButtonContinuous@Base 0.95.0
WMSetButtonDisabledTextColor@Base 0.95.0
WMSetButtonEnabled@Base 0.95.0
WMSetButtonFont@Base 0.95.0
WMSetButtonImage@Base 0.95.0
WMSetButtonImageDefault@Base 0.95.0
WMSetButtonImageDimsWhenDisabled@Base 0.95.0
WMSetButtonImagePosition@Base 0.95.0
WMSetButtonPeriodicDelay@Base 0.95.0
WMSetButtonSelected@Base 0.95.0
WMSetButtonTag@Base 0.95.0
WMSetButtonText@Base 0.95.0
WMSetButtonTextAlignment@Base 0.95.0
WMSetButtonTextColor@Base 0.95.0
WMSetColorAlpha@Base 0.95.0
WMSetColorInGC@Base 0.95.0
WMSetColorPanelAction@Base 0.95.0
WMSetColorPanelColor@Base 0.95.0
WMSetColorPanelPickerMode@Base 0.95.0
WMSetColorWellColor@Base 0.95.0
WMSetFilePanelAccessoryView@Base 0.95.0
WMSetFilePanelAutoCompletion@Base 0.95.0
WMSetFilePanelCanChooseDirectories@Base 0.95.0
WMSetFilePanelCanChooseFiles@Base 0.95.0
WMSetFilePanelDirectory@Base 0.95.0
WMSetFocusToWidget@Base 0.95.0
WMSetFontPanelAction@Base 0.95.0
WMSetFontPanelFont@Base 0.95.0
WMSetFrameRelief@Base 0.95.0
WMSetFrameTitle@Base 0.95.0
WMSetFrameTitleColor@Base 0.95.6
WMSetFrameTitlePosition@Base 0.95.0
WMSetLabelFont@Base 0.95.0
WMSetLabelImage@Base 0.95.0
WMSetLabelImagePosition@Base 0.95.0
WMSetLabelRelief@Base 0.95.0
WMSetLabelText@Base 0.95.0
WMSetLabelTextAlignment@Base 0.95.0
WMSetLabelTextColor@Base 0.95.0
WMSetLabelWraps@Base 0.95.0
WMSetListAction@Base 0.95.0
WMSetListAllowEmptySelection@Base 0.95.0
WMSetListAllowMultipleSelection@Base 0.95.0
WMSetListBottomPosition@Base 0.95.0
WMSetListDoubleAction@Base 0.95.0
WMSetListPosition@Base 0.95.0
WMSetListSelectionToRange@Base 0.95.0
WMSetListUserDrawItemHeight@Base 0.95.0
WMSetListUserDrawProc@Base 0.95.0
WMSetMenuItemAction@Base 0.95.0
WMSetMenuItemEnabled@Base 0.95.0
WMSetMenuItemMixedStatePixmap@Base 0.95.0
WMSetMenuItemOffStatePixmap@Base 0.95.0
WMSetMenuItemOnStatePixmap@Base 0.95.0
WMSetMenuItemPixmap@Base 0.95.0
WMSetMenuItemRepresentedObject@Base 0.95.0
WMSetMenuItemShortcut@Base 0.95.0
WMSetMenuItemShortcutModifierMask@Base 0.95.0
WMSetMenuItemState@Base 0.95.0
WMSetMenuItemTitle@Base 0.95.0
WMSetPopUpButtonAction@Base 0.95.0
WMSetPopUpButtonEnabled@Base 0.95.0
WMSetPopUpButtonItemEnabled@Base 0.95.0
WMSetPopUpButtonPullsDown@Base 0.95.0
WMSetPopUpButtonSelectedItem@Base 0.95.0
WMSetPopUpButtonText@Base 0.95.0
WMSetProgressIndicatorMaxValue@Base 0.95.0
WMSetProgressIndicatorMinValue@Base 0.95.0
WMSetProgressIndicatorValue@Base 0.95.0
WMSetRulerMargins@Base 0.95.0
WMSetRulerMoveAction@Base 0.95.0
WMSetRulerOffset@Base 0.95.0
WMSetRulerReleaseAction@Base 0.95.0
WMSetScrollViewContentView@Base 0.95.0
WMSetScrollViewHasHorizontalScroller@Base 0.95.0
WMSetScrollViewHasVerticalScroller@Base 0.95.0
WMSetScrollViewLineScroll@Base 0.95.0
WMSetScrollViewPageScroll@Base 0.95.0
WMSetScrollViewRelief@Base 0.95.0
WMSetScrollerAction@Base 0.95.0
WMSetScrollerArrowsPosition@Base 0.95.0
WMSetScrollerParameters@Base 0.95.0
WMSetSliderAction@Base 0.95.0
WMSetSliderContinuous@Base 0.95.0
WMSetSliderImage@Base 0.95.0
WMSetSliderKnobThickness@Base 0.95.0
WMSetSliderMaxValue@Base 0.95.0
WMSetSliderMinValue@Base 0.95.0
WMSetSliderValue@Base 0.95.0
WMSetSplitViewConstrainProc@Base 0.95.0
WMSetSplitViewVertical@Base 0.95.0
WMSetTabViewDelegate@Base 0.95.0
WMSetTabViewEnabled@Base 0.95.0
WMSetTabViewFont@Base 0.95.0
WMSetTabViewItemEnabled@Base 0.95.0
WMSetTabViewItemLabel@Base 0.95.0
WMSetTabViewItemView@Base 0.95.0
WMSetTabViewType@Base 0.95.0
WMSetTextAlignment@Base 0.95.0
WMSetTextBackgroundColor@Base 0.95.0
WMSetTextBackgroundPixmap@Base 0.95.0
WMSetTextBlockProperties@Base 0.95.0
WMSetTextDefaultColor@Base 0.95.0
WMSetTextDefaultFont@Base 0.95.0
WMSetTextDelegate@Base 0.95.0
WMSetTextEditable@Base 0.95.0
WMSetTextFieldAlignment@Base 0.95.0
WMSetTextFieldBeveled@Base 0.95.0
WMSetTextFieldBordered@Base 0.95.0
WMSetTextFieldCursorPosition@Base 0.95.0
WMSetTextFieldDelegate@Base 0.95.0
WMSetTextFieldEditable@Base 0.95.0
WMSetTextFieldFont@Base 0.95.0
WMSetTextFieldNextTextField@Base 0.95.0
WMSetTextFieldPrevTextField@Base 0.95.0
WMSetTextFieldSecure@Base 0.95.0
WMSetTextFieldText@Base 0.95.0
WMSetTextForegroundColor@Base 0.95.0
WMSetTextHasHorizontalScroller@Base 0.95.0
WMSetTextHasRuler@Base 0.95.0
WMSetTextHasVerticalScroller@Base 0.95.0
WMSetTextIgnoresNewline@Base 0.95.0
WMSetTextIndentNewLines@Base 0.95.0
WMSetTextRelief@Base 0.95.0
WMSetTextSelectionColor@Base 0.95.0
WMSetTextSelectionFont@Base 0.95.0
WMSetTextSelectionUnderlined@Base 0.95.0
WMSetTextUsesMonoFont@Base 0.95.0
WMSetViewDragDestinationProcs@Base 0.95.0
WMSetViewDragImage@Base 0.95.0
WMSetViewDragSourceProcs@Base 0.95.0
WMSetViewDraggable@Base 0.95.0
WMSetViewExpandsToParent@Base 0.95.0
WMSetViewNextResponder@Base 0.95.0
WMSetViewNotifySizeChanges@Base 0.95.0
WMSetWidgetBackgroundColor@Base 0.95.0
WMSetWidgetBackgroundPixmap@Base 0.95.7
WMSetWidgetDefaultBoldFont@Base 0.95.0
WMSetWidgetDefaultFont@Base 0.95.0
WMSetWindowAspectRatio@Base 0.95.0
WMSetWindowBaseSize@Base 0.95.0
WMSetWindowCloseAction@Base 0.95.0
WMSetWindowDocumentEdited@Base 0.95.0
WMSetWindowInitialPosition@Base 0.95.0
WMSetWindowLevel@Base 0.95.0
WMSetWindowMaxSize@Base 0.95.0
WMSetWindowMinSize@Base 0.95.0
WMSetWindowMiniwindowImage@Base 0.95.0
WMSetWindowMiniwindowPixmap@Base 0.95.0
WMSetWindowMiniwindowTitle@Base 0.95.0
WMSetWindowResizeIncrements@Base 0.95.0
WMSetWindowTitle@Base 0.95.0
WMSetWindowUserPosition@Base 0.95.0
WMShowColorPanel@Base 0.95.0
WMShowFontPanel@Base 0.95.0
WMShowTextRuler@Base 0.95.0
WMSortBrowserColumn@Base 0.95.0
WMSortBrowserColumnWithComparer@Base 0.95.0
WMSortListItems@Base 0.95.0
WMSortListItemsWithComparer@Base 0.95.0
WMSystemFontOfSize@Base 0.95.0
WMTabViewItemAtPoint@Base 0.95.0
WMTextDidBeginEditingNotification@Base 0.95.0
WMTextDidChangeNotification@Base 0.95.0
WMTextDidEndEditingNotification@Base 0.95.0
WMThawText@Base 0.95.0
WMUnmapSubwidgets@Base 0.95.0
WMUnmapWidget@Base 0.95.0
WMUnregisterViewDraggedTypes@Base 0.95.0
WMUnselectAllListItems@Base 0.95.0
WMUnselectListItem@Base 0.95.0
WMUnsetViewDraggable@Base 0.95.0
WMViewFocusDidChangeNotification@Base 0.95.0
WMViewRealizedNotification@Base 0.95.0
WMViewSizeDidChangeNotification@Base 0.95.0
WMViewXID@Base 0.95.0
WMWhiteColor@Base 0.95.0
WMWidgetHeight@Base 0.95.0
WMWidgetIsMapped@Base 0.95.0
WMWidgetOfView@Base 0.95.0
WMWidgetScreen@Base 0.95.0
WMWidgetWidth@Base 0.95.0
WMWidgetXID@Base 0.95.0
WMWidthOfString@Base 0.95.0
WSetColorWellBordered@Base 0.95.0
W_ActionToOperation@Base 0.95.0
W_BalloonHandleEnterView@Base 0.95.0
W_BalloonHandleLeaveView@Base 0.95.0
W_BroadcastMessage@Base 0.95.0
W_CallDestroyHandlers@Base 0.95.0
W_CreateBalloon@Base 0.95.0
W_CreateIC@Base 0.95.0
W_CreateRootView@Base 0.95.0
W_CreateTopView@Base 0.95.0
W_CreateUnmanagedTopView@Base 0.95.0
W_CreateView@Base 0.95.0
W_DestroyIC@Base 0.95.0
W_DestroyView@Base 0.95.0
W_DispatchMessage@Base 0.95.0
W_DragDestinationCancelDropOnEnter@Base 0.95.0
W_DragDestinationInfoClear@Base 0.95.0
W_DragDestinationStartTimer@Base 0.95.0
W_DragDestinationStateHandler@Base 0.95.0
W_DragDestinationStopTimer@Base 0.95.0
W_DragDestinationStoreEnterMsgInfo@Base 0.95.0
W_DragDestinationStorePositionMsgInfo@Base 0.95.0
W_DragSourceStartTimer@Base 0.95.0
W_DragSourceStateHandler@Base 0.95.0
W_DragSourceStopTimer@Base 0.95.0
W_DrawRelief@Base 0.95.0
W_DrawReliefWithGC@Base 0.95.0
W_FocusIC@Base 0.95.0
W_FocusedViewOfToplevel@Base 0.95.0
W_FreeViewXdndPart@Base 0.95.0
W_GetTextHeight@Base 0.95.0
W_GetViewForXWindow@Base 0.95.0
W_HandleDNDClientMessage@Base 0.95.0
W_HandleSelectionEvent@Base 0.95.0
W_InitApplication@Base 0.95.0
W_InitIM@Base 0.95.0
W_LookupString@Base 0.95.0
W_LowerView@Base 0.95.0
W_MapSubviews@Base 0.95.0
W_MapView@Base 0.95.0
W_MoveView@Base 0.95.0
W_OperationToAction@Base 0.95.0
W_PaintText@Base 0.95.0
W_PaintTextAndImage@Base 0.95.0
W_RaiseView@Base 0.95.0
W_ReadConfigurations@Base 0.95.0
W_RealizeView@Base 0.95.0
W_RedisplayView@Base 0.95.0
W_RegisterUserWidget@Base 0.95.0
W_ReleaseView@Base 0.95.0
W_ReparentView@Base 0.95.0
W_ResizeView@Base 0.95.0
W_RetainView@Base 0.95.0
W_SendDnDClientMessage@Base 0.95.0
W_SetFocusOfTopLevel@Base 0.95.0
W_SetPreeditPositon@Base 0.95.0
W_SetViewBackgroundColor@Base 0.95.0
W_SetViewBackgroundPixmap@Base 0.95.7
W_SetViewCursor@Base 0.95.0
W_TopLevelOfView@Base 0.95.0
W_UnFocusIC@Base 0.95.0
W_UnmapSubviews@Base 0.95.0
W_UnmapView@Base 0.95.0
W_getconf_mouseWheelDown@Base 0.95.5
W_getconf_mouseWheelUp@Base 0.95.5
W_setconf_doubleClickDelay@Base 0.95.5
_BrowserViewDelegate@Base 0.95.0
_ColorWellViewDelegate@Base 0.95.0
_ProgressIndicatorDelegate@Base 0.95.0
_RulerViewDelegate@Base 0.95.0
_ScrollViewViewDelegate@Base 0.95.0
_ScrollerViewDelegate@Base 0.95.0
_SliderViewDelegate@Base 0.95.0
_TextFieldViewDelegate@Base 0.95.0
_TextViewDelegate@Base 0.95.0
_WindowViewDelegate@Base 0.95.0
colorListMenuItem@Base 0.95.0
customPaletteMenuItem@Base 0.95.0
rgbCharToInt@Base 0.95.6
rgbColors@Base 0.95.0
rgbIntToChar@Base 0.95.6
wmkpoint@Base 0.95.0
wmkrect@Base 0.95.0
wmksize@Base 0.95.0
-1
View File
@@ -1 +0,0 @@
test/wtest.c
-4
View File
@@ -1,4 +0,0 @@
usr/include/WMaker.h
usr/lib/*/libWMaker.a
usr/lib/*/libWMaker.so
usr/lib/*/pkgconfig/wmlib.pc
-1
View File
@@ -1 +0,0 @@
usr/lib/*/libWMaker.so.*
-12
View File
@@ -1,12 +0,0 @@
libWMaker.so.1 libwmaker1 #MINVER#
WMAppAddWindow@Base 0.95.7
WMAppCreateWithMain@Base 0.95.7
WMAppSetMainMenu@Base 0.95.7
WMHideApplication@Base 0.95.7
WMHideOthers@Base 0.95.7
WMMenuAddItem@Base 0.95.7
WMMenuAddSubmenu@Base 0.95.7
WMMenuCreate@Base 0.95.7
WMProcessEvent@Base 0.95.7
WMRealizeMenus@Base 0.95.7
WMSetWindowAttributes@Base 0.95.7
-3
View File
@@ -1,3 +0,0 @@
wrlib/NEWS
wrlib/README
wrlib/TODO
-4
View File
@@ -1,4 +0,0 @@
usr/include/wraster.h
usr/lib/*/libwraster.a
usr/lib/*/libwraster.so
usr/lib/*/pkgconfig/wrlib.pc
-1
View File
@@ -1 +0,0 @@
wrlib/README
-1
View File
@@ -1 +0,0 @@
usr/lib/*/libwraster.so.*
-61
View File
@@ -1,61 +0,0 @@
libwraster.so.6 libwraster6 #MINVER#
LIBWRASTER6@LIBWRASTER6 0.95.8
RBevelImage@LIBWRASTER6 0.95.8
RBlurImage@LIBWRASTER6 0.95.8
RClearImage@LIBWRASTER6 0.95.8
RCloneImage@LIBWRASTER6 0.95.8
RCombineAlpha@LIBWRASTER6 0.95.8
RCombineArea@LIBWRASTER6 0.95.8
RCombineAreaWithOpaqueness@LIBWRASTER6 0.95.8
RCombineImageWithColor@LIBWRASTER6 0.95.8
RCombineImages@LIBWRASTER6 0.95.8
RCombineImagesWithOpaqueness@LIBWRASTER6 0.95.8
RConvertImage@LIBWRASTER6 0.95.8
RConvertImageMask@LIBWRASTER6 0.95.8
RCopyArea@LIBWRASTER6 0.95.8
RCreateContext@LIBWRASTER6 0.95.8
RCreateImage@LIBWRASTER6 0.95.8
RCreateImageFromDrawable@LIBWRASTER6 0.95.8
RCreateImageFromXImage@LIBWRASTER6 0.95.8
RCreateXImage@LIBWRASTER6 0.95.8
RDestroyContext@LIBWRASTER6 0.95.8
RDestroyXImage@LIBWRASTER6 0.95.8
RDrawLine@LIBWRASTER6 0.95.8
RDrawLines@LIBWRASTER6 0.95.8
RDrawSegments@LIBWRASTER6 0.95.8
RErrorCode@LIBWRASTER6 0.95.8
RFillImage@LIBWRASTER6 0.95.8
RFlipImage@LIBWRASTER6 0.95.8
RGetClosestXColor@LIBWRASTER6 0.95.8
RGetImageFileFormat@LIBWRASTER6 0.95.8
RGetImageFromXPMData@LIBWRASTER6 0.95.8
RGetPixel@LIBWRASTER6 0.95.8
RGetSubImage@LIBWRASTER6 0.95.8
RGetXImage@LIBWRASTER6 0.95.8
RHSVtoRGB@LIBWRASTER6 0.95.8
RLightImage@LIBWRASTER6 0.95.8
RLoadImage@LIBWRASTER6 0.95.8
RMakeCenteredImage@LIBWRASTER6 0.95.8
RMakeTiledImage@LIBWRASTER6 0.95.8
RMessageForError@LIBWRASTER6 0.95.8
ROperateLine@LIBWRASTER6 0.95.8
ROperateLines@LIBWRASTER6 0.95.8
ROperatePixel@LIBWRASTER6 0.95.8
ROperatePixels@LIBWRASTER6 0.95.8
ROperateRectangle@LIBWRASTER6 0.95.8
ROperateSegments@LIBWRASTER6 0.95.8
RPutPixel@LIBWRASTER6 0.95.8
RPutPixels@LIBWRASTER6 0.95.8
RPutXImage@LIBWRASTER6 0.95.8
RRGBtoHSV@LIBWRASTER6 0.95.8
RReleaseImage@LIBWRASTER6 0.95.8
RRenderGradient@LIBWRASTER6 0.95.8
RRenderInterwovenGradient@LIBWRASTER6 0.95.8
RRenderMultiGradient@LIBWRASTER6 0.95.8
RRetainImage@LIBWRASTER6 0.95.8
RRotateImage@LIBWRASTER6 0.95.8
RSaveImage@LIBWRASTER6 0.95.8
RScaleImage@LIBWRASTER6 0.95.8
RShutdown@LIBWRASTER6 0.95.8
RSmoothScaleImage@LIBWRASTER6 0.95.8
RSupportedFileFormats@LIBWRASTER6 0.95.8
-1
View File
@@ -1 +0,0 @@
usr/lib/*/libWUtil.so.*
-248
View File
@@ -1,248 +0,0 @@
libWUtil.so.5 libwutil5 #MINVER#
WHandleEvents@Base 0.95.5
WMAddIdleHandler@Base 0.95.5
WMAddInputHandler@Base 0.95.5
WMAddNotificationObserver@Base 0.95.5
WMAddPersistentTimerHandler@Base 0.95.5
WMAddTimerHandler@Base 0.95.5
WMAddToArray@Base 0.95.5
WMAddToPLArray@Base 0.95.5
WMAppendArray@Base 0.95.5
WMAppendBag@Base 0.95.5
WMAppendData@Base 0.95.5
WMAppendDataBytes@Base 0.95.5
WMApplication@Base 0.95.5
WMArrayFirst@Base 0.95.5
WMArrayLast@Base 0.95.5
WMArrayNext@Base 0.95.5
WMArrayPrevious@Base 0.95.5
WMBagFirst@Base 0.95.5
WMBagIndexForIterator@Base 0.95.5
WMBagIteratorAtIndex@Base 0.95.5
WMBagLast@Base 0.95.5
WMBagNext@Base 0.95.5
WMBagPrevious@Base 0.95.5
WMCountHashTable@Base 0.95.5
WMCountInArray@Base 0.95.5
WMCountInBag@Base 0.95.5
WMCreateArray@Base 0.95.5
WMCreateArrayWithArray@Base 0.95.5
WMCreateArrayWithDestructor@Base 0.95.5
WMCreateDataWithBytes@Base 0.95.5
WMCreateDataWithBytesNoCopy@Base 0.95.5
WMCreateDataWithCapacity@Base 0.95.5
WMCreateDataWithData@Base 0.95.5
WMCreateDataWithLength@Base 0.95.5
WMCreateHashTable@Base 0.95.5
WMCreateNotification@Base 0.95.5
WMCreateNotificationQueue@Base 0.95.5
WMCreatePLArray@Base 0.95.5
WMCreatePLData@Base 0.95.5
WMCreatePLDataWithBytes@Base 0.95.5
WMCreatePLDataWithBytesNoCopy@Base 0.95.5
WMCreatePLDictionary@Base 0.95.5
WMCreatePLString@Base 0.95.5
WMCreatePropListFromDescription@Base 0.95.5
WMCreateTreeBag@Base 0.95.5
WMCreateTreeBagWithDestructor@Base 0.95.5
WMCreateTreeNode@Base 0.95.5
WMCreateTreeNodeWithDestructor@Base 0.95.5
WMDataBytes@Base 0.95.5
WMDeepCopyPropList@Base 0.95.5
WMDeleteFromArray@Base 0.95.5
WMDeleteFromBag@Base 0.95.5
WMDeleteFromPLArray@Base 0.95.5
WMDeleteIdleHandler@Base 0.95.5
WMDeleteInputHandler@Base 0.95.5
WMDeleteLeafForTreeNode@Base 0.95.5
WMDeleteTimerHandler@Base 0.95.5
WMDeleteTimerWithClientData@Base 0.95.5
WMDequeueNotificationMatching@Base 0.95.5
WMDestroyTreeNode@Base 0.95.5
WMEmptyArray@Base 0.95.5
WMEmptyBag@Base 0.95.5
WMEnableUDPeriodicSynchronization@Base 0.95.5
WMEnqueueCoalesceNotification@Base 0.95.5
WMEnqueueNotification@Base 0.95.5
WMEnumerateHashTable@Base 0.95.5
WMEraseFromBag@Base 0.95.5
WMFindInArray@Base 0.95.5
WMFindInBag@Base 0.95.5
WMFindInTree@Base 0.95.5
WMFindInTreeWithDepthLimit@Base 0.95.5
WMFreeArray@Base 0.95.5
WMFreeBag@Base 0.95.5
WMFreeHashTable@Base 0.95.5
WMGetApplicationName@Base 0.95.5
WMGetArrayItemCount@Base 0.95.5
WMGetBagItemCount@Base 0.95.5
WMGetDataBytes@Base 0.95.5
WMGetDataBytesWithLength@Base 0.95.5
WMGetDataBytesWithRange@Base 0.95.5
WMGetDataForTreeNode@Base 0.95.5
WMGetDataFormat@Base 0.95.5
WMGetDataLength@Base 0.95.5
WMGetDefaultNotificationQueue@Base 0.95.5
WMGetDefaultsFromPath@Base 0.95.5
WMGetFirstInBag@Base 0.95.5
WMGetFromArray@Base 0.95.5
WMGetFromBag@Base 0.95.5
WMGetFromPLArray@Base 0.95.5
WMGetFromPLData@Base 0.95.5
WMGetFromPLDictionary@Base 0.95.5
WMGetFromPLString@Base 0.95.5
WMGetNotificationClientData@Base 0.95.5
WMGetNotificationName@Base 0.95.5
WMGetNotificationObject@Base 0.95.5
WMGetPLDataBytes@Base 0.95.5
WMGetPLDataLength@Base 0.95.5
WMGetPLDictionaryKeys@Base 0.95.5
WMGetParentForTreeNode@Base 0.95.5
WMGetPropListDescription@Base 0.95.5
WMGetPropListItemCount@Base 0.95.5
WMGetStandardUserDefaults@Base 0.95.5
WMGetSubarrayWithRange@Base 0.95.5
WMGetSubdataWithRange@Base 0.95.5
WMGetTreeNodeDepth@Base 0.95.5
WMGetUDBoolForKey@Base 0.95.5
WMGetUDFloatForKey@Base 0.95.5
WMGetUDIntegerForKey@Base 0.95.5
WMGetUDKeys@Base 0.95.5
WMGetUDObjectForKey@Base 0.95.5
WMGetUDSearchList@Base 0.95.5
WMGetUDStringForKey@Base 0.95.5
WMHashGet@Base 0.95.5
WMHashGetItemAndKey@Base 0.95.5
WMHashInsert@Base 0.95.5
WMHashRemove@Base 0.95.5
WMIncreaseDataLengthBy@Base 0.95.5
WMInitializeApplication@Base 0.95.5
WMInsertInArray@Base 0.95.5
WMInsertInBag@Base 0.95.5
WMInsertInPLArray@Base 0.95.5
WMInsertItemInTree@Base 0.95.5
WMInsertNodeInTree@Base 0.95.5
WMIntHashCallbacks@Base 0.95.5
WMIsDataEqualToData@Base 0.95.5
WMIsPLArray@Base 0.95.5
WMIsPLData@Base 0.95.5
WMIsPLDictionary@Base 0.95.5
WMIsPLString@Base 0.95.5
WMIsPropListEqualTo@Base 0.95.5
WMMapArray@Base 0.95.5
WMMapBag@Base 0.95.5
WMMergePLDictionaries@Base 0.95.5
WMNextHashEnumeratorItem@Base 0.95.5
WMNextHashEnumeratorItemAndKey@Base 0.95.5
WMNextHashEnumeratorKey@Base 0.95.5
WMPLSetCaseSensitive@Base 0.95.5
WMPathForResourceOfType@Base 0.95.5
WMPopFromArray@Base 0.95.5
WMPostNotification@Base 0.95.5
WMPostNotificationName@Base 0.95.5
WMPutInBag@Base 0.95.5
WMPutInPLDictionary@Base 0.95.5
WMReadPropListFromFile@Base 0.95.5
WMReadPropListFromPipe@Base 0.95.5
WMReleaseApplication@Base 0.95.6
WMReleaseData@Base 0.95.5
WMReleaseNotification@Base 0.95.5
WMReleasePropList@Base 0.95.5
WMRemoveFromArrayMatching@Base 0.95.5
WMRemoveFromBag@Base 0.95.5
WMRemoveFromPLArray@Base 0.95.5
WMRemoveFromPLDictionary@Base 0.95.5
WMRemoveLeafForTreeNode@Base 0.95.5
WMRemoveNotificationObserver@Base 0.95.5
WMRemoveNotificationObserverWithName@Base 0.95.5
WMRemoveUDObjectForKey@Base 0.95.5
WMReplaceDataBytesInRange@Base 0.95.5
WMReplaceDataForTreeNode@Base 0.95.5
WMReplaceInArray@Base 0.95.5
WMReplaceInBag@Base 0.95.5
WMResetDataBytesInRange@Base 0.95.5
WMResetHashTable@Base 0.95.5
WMRetainData@Base 0.95.5
WMRetainNotification@Base 0.95.5
WMRetainPropList@Base 0.95.5
WMSaveUserDefaults@Base 0.95.5
WMSetData@Base 0.95.5
WMSetDataCapacity@Base 0.95.5
WMSetDataFormat@Base 0.95.5
WMSetDataLength@Base 0.95.5
WMSetResourcePath@Base 0.95.5
WMSetUDBoolForKey@Base 0.95.5
WMSetUDFloatForKey@Base 0.95.5
WMSetUDIntegerForKey@Base 0.95.5
WMSetUDObjectForKey@Base 0.95.5
WMSetUDSearchList@Base 0.95.5
WMSetUDStringForKey@Base 0.95.5
WMShallowCopyPropList@Base 0.95.5
WMSortArray@Base 0.95.5
WMSortBag@Base 0.95.5
WMSortLeavesForTreeNode@Base 0.95.5
WMSortTree@Base 0.95.5
WMStringHashCallbacks@Base 0.95.5
WMStringPointerHashCallbacks@Base 0.95.5
WMSubtractPLDictionaries@Base 0.95.5
WMSynchronizeUserDefaults@Base 0.95.5
WMTreeWalk@Base 0.95.5
WMUserDefaultsDidChangeNotification@Base 0.95.5
WMWritePropListToFile@Base 0.95.5
WMenuParserCreate@Base 0.95.5
WMenuParserDelete@Base 0.95.5
WMenuParserError@Base 0.95.5
WMenuParserGetFilename@Base 0.95.5
WMenuParserGetLine@Base 0.95.5
WMenuParserRegisterSimpleMacro@Base 0.95.5
W_ApplicationInitialized@Base 0.95.5
W_CheckIdleHandlers@Base 0.95.5
W_CheckTimerHandlers@Base 0.95.5
W_FlushASAPNotificationQueue@Base 0.95.5
W_FlushIdleNotificationQueue@Base 0.95.5
W_HandleInputEvents@Base 0.95.5
W_InitNotificationCenter@Base 0.95.5
W_ReleaseNotificationCenter@Base 0.95.6
_WINGS_progname@Base 0.95.5
__wmessage@Base 0.95.5
isnamechr@Base 0.95.5
menu_parser_define_macro@Base 0.95.5
menu_parser_expand_macro@Base 0.95.5
menu_parser_find_macro@Base 0.95.5
menu_parser_free_macros@Base 0.95.5
menu_parser_register_preset_macros@Base 0.95.5
menu_parser_skip_spaces_and_comments@Base 0.95.5
w_save_defaults_changes@Base 0.95.6
w_syslog_close@Base 0.95.6
wcopy_file@Base 0.95.5
wdefaultspathfordomain@Base 0.95.5
wexpandpath@Base 0.95.5
wfindfile@Base 0.95.5
wfindfileinarray@Base 0.95.5
wfindfileinlist@Base 0.95.5
wfree@Base 0.95.5
wgethomedir@Base 0.95.5
wglobaldefaultspathfordomain@Base 0.95.5
wmalloc@Base 0.95.5
wmkdirhier@Base 0.95.5
wmkrange@Base 0.95.5
wrealloc@Base 0.95.5
wrelease@Base 0.95.5
wretain@Base 0.95.5
wrmdirhier@Base 0.95.5
wsetabort@Base 0.95.5
wshellquote@Base 0.95.5
wstrappend@Base 0.95.5
wstrconcat@Base 0.95.5
wstrdup@Base 0.95.5
wstrlcat@Base 0.95.5
wstrlcpy@Base 0.95.5
wstrndup@Base 0.95.5
wtokenfree@Base 0.95.5
wtokenjoin@Base 0.95.5
wtokennext@Base 0.95.5
wtokensplit@Base 0.95.5
wtrimspace@Base 0.95.5
wusergnusteppath@Base 0.95.5
wusleep@Base 0.95.5
wutil_shutdown@Base 0.95.6
-1
View File
@@ -1 +0,0 @@
Don't remove this directory
-18
View File
@@ -1,18 +0,0 @@
Description: XTerm debian configuration.
Based on Marcelo E. Magallon <mmagallo@debian.org> diff patch.
Author: Rodolfo García Peñas (kix) <kix@kix.es>
Last-Update: 2017-03-11
--- a/WindowMaker/Defaults/WMState.in
+++ b/WindowMaker/Defaults/WMState.in
@@ -10,8 +10,8 @@
Lock = Yes;
},
{
- Command = xterm;
- Name = xterm.XTerm;
+ Command = "x-terminal-emulator";
+ Name = "x-terminal-emulator.XTerm";
AutoLaunch = No;
Forced = No;
Position = "0,1";
-1
View File
@@ -1 +0,0 @@
53_Debian_WMState.diff
-63
View File
@@ -1,63 +0,0 @@
#!/usr/bin/make -f
# export DH_VERBOSE=1
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
export DEB_CFLAGS_MAINT_APPEND += -Wall
export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed
LINGUAS := $(patsubst po/%.po, %, $(wildcard po/*.po))
WMAKER_OPTIONS := --disable-xlocale --enable-modelock --enable-pango --enable-xinerama
#not-enabled --enable-usermenu --disable-shape --disable-shm --enable-randr
#not-enabled --disable-xpm --disable-png --disable-jpeg --disable-gif --disable-tiff
# Debian packages destination folder
DEBIAN_TMP := debian/tmp
# Be careful with the leading / because some of these values are going
# to be hardcoded into the executables
BASEDIR := /usr
INCLUDEDIR := $(BASEDIR)/include
SHAREDIR := $(BASEDIR)/share
GNUSTEPDIR := $(SHAREDIR)/lib/GNUstep/System
WMSHAREDIR := $(SHAREDIR)/WindowMaker
PIXMAPDIR := $(INCLUDEDIR)/X11/pixmaps
DEFSDATADIR := /etc/GNUstep/Defaults
COMMON_OPTIONS := --datadir=$(SHAREDIR) \
--with-pixmapdir=$(PIXMAPDIR) \
--with-gnustepdir=$(GNUSTEPDIR) \
--with-defsdatadir=$(DEFSDATADIR)
%:
dh $@ --parallel
override_dh_auto_configure:
env LINGUAS="$(LINGUAS)" dh_auto_configure --verbose -- \
$(COMMON_OPTIONS) $(WMAKER_OPTIONS)
override_dh_installdocs:
# Readmes - Copy+rename before install
# We use the root of the temporal directory debian/tmp
cp po/README $(DEBIAN_TMP)/README.po
cp README.definable-cursor $(DEBIAN_TMP)/README.definable-cursor
cp WPrefs.app/README $(DEBIAN_TMP)/README.WPrefs
cp WPrefs.app/po/README $(DEBIAN_TMP)/README.WPrefs.po
dh_installdocs
override_dh_install:
# Fix perms for /usr/share/WindowMaker/*sh before install them
chmod +x $(DEBIAN_TMP)$(WMSHAREDIR)/autostart.sh
chmod +x $(DEBIAN_TMP)$(WMSHAREDIR)/exitscript.sh
# Now, change the #wmdatadir# string to $(WMSHAREDIR)
perl -pi -e 's:#wmdatadir#:$(WMSHAREDIR):' `find $(DEBIAN_TMP)/$(WMSHAREDIR) -name plmenu.*`
perl -pi -e 's:#wmdatadir#:$(WMSHAREDIR):' $(DEBIAN_TMP)$(WMSHAREDIR)/wmmacros
perl -pi -e 's:#wmdatadir#:$(WMSHAREDIR):' $(DEBIAN_TMP)$(WMSHAREDIR)/plmenu
# Install files
dh_install
override_dh_installwm:
dh_installwm --priority=50
-1
View File
@@ -1 +0,0 @@
3.0 (quilt)
-2
View File
@@ -1,2 +0,0 @@
debian/debianfiles/Themes/DebianSwirl.jpg
debian/debianfiles/Themes/debian.tiff
-2
View File
@@ -1,2 +0,0 @@
# Don't store changes on autogenerated files
extend-diff-ignore = "(^|/)(distros\/.+|INSTALL-WMAKER|README.i18n)$"
-2
View File
@@ -1,2 +0,0 @@
version=4
http://windowmaker.org/ (?:|.*/)WindowMaker@ANY_VERSION@@ARCHIVE_EXT@
-1
View File
@@ -1 +0,0 @@
usr/share/xsessions
-13
View File
@@ -1,13 +0,0 @@
AUTHORS
BUGFORM
BUGS
FAQ
NEWS
README
TODO
debian/debianfiles/Themes/DebianLegacy.txt
debian/tmp/README.WPrefs
debian/tmp/README.WPrefs.po
debian/tmp/README.definable-cursor
debian/tmp/README.po
util/wm-oldmenu2new
-18
View File
@@ -1,18 +0,0 @@
debian/debianfiles/Themes/Debian.style usr/share/WindowMaker/Themes
debian/debianfiles/Themes/DebianLegacy.style usr/share/WindowMaker/Themes
debian/debianfiles/Themes/DebianSwirl.jpg usr/share/WindowMaker/Backgrounds
debian/debianfiles/Themes/debian.tiff usr/share/WindowMaker/Backgrounds
debian/debianfiles/conf/WMRootMenu etc/GNUstep/Defaults
debian/debianfiles/conf/WMWindowAttributes etc/GNUstep/Defaults
debian/debianfiles/conf/WindowMaker etc/GNUstep/Defaults
debian/debianfiles/conf/plmenu.Debian etc/GNUstep/Defaults
debian/debianfiles/wmaker usr/bin
debian/debianfiles/wmaker-common.desktop usr/share/xsessions
etc/GNUstep/Defaults/WMGLOBAL
etc/GNUstep/Defaults/WMState
usr/share/WINGs
usr/share/WindowMaker
usr/share/lib/GNUstep/System/Applications/WPrefs.app/WPrefs.tiff
usr/share/lib/GNUstep/System/Applications/WPrefs.app/WPrefs.xpm
usr/share/lib/GNUstep/System/Applications/WPrefs.app/tiff
usr/share/locale/*/LC_MESSAGES/*.mo
-1
View File
@@ -1 +0,0 @@
etc/GNUstep/Defaults/plmenu.Debian usr/share/WindowMaker/menu.hook
-6
View File
@@ -1,6 +0,0 @@
mv_conffile /etc/X11/WindowMaker/background.menu /usr/share/WindowMaker/background.menu 0.95.7-5~
mv_conffile /etc/X11/WindowMaker/wmmacros /usr/share/WindowMaker/wmmacros 0.95.7-5~
rm_conffile /etc/X11/WindowMaker/appearance.menu 0.95.7-5~
rm_conffile /etc/X11/WindowMaker/menu.posthook 0.95.7-5~
rm_conffile /etc/X11/WindowMaker/menu.prehook 0.95.7-5~
rm_conffile /etc/menu-methods/wmappearance 0.95.8-2~
-14
View File
@@ -1,14 +0,0 @@
#!/bin/sh
set -e
#DEBHELPER#
# run after debhelper code, which removes menu-methods.
if [ "$1" = "configure" ] &&
[ x"$2" != "x" ] &&
test -e /etc/GNUstep/Defaults/appearance.menu &&
dpkg --compare-versions "$2" '<<' '0.95.8-2~' ; then
if head -n1 /etc/GNUstep/Defaults/appearance.menu |
grep -q 'Automatically generated file. Do not edit.' ; then
rm /etc/GNUstep/Defaults/appearance.menu
fi
fi
-6
View File
@@ -1,6 +0,0 @@
#!/bin/sh
set -e
if [ "$1" = "purge" ] && test -e /etc/GNUstep/Defaults/appearance.menu ; then
rm /etc/GNUstep/Defaults/appearance.menu
fi
#DEBHELPER#
-8
View File
@@ -1,8 +0,0 @@
usr/bin/wxcopy
usr/bin/wxpaste
usr/share/man/cs/man1/wxcopy.1
usr/share/man/cs/man1/wxpaste.1
usr/share/man/ru/man1/wxcopy.1
usr/share/man/ru/man1/wxpaste.1
usr/share/man/sk/man1/wxcopy.1
usr/share/man/sk/man1/wxpaste.1
-2
View File
@@ -1,2 +0,0 @@
doc/wxcopy.1
doc/wxpaste.1
-35
View File
@@ -1,35 +0,0 @@
usr/bin/convertfonts usr/lib/WindowMaker
usr/bin/geticonset
usr/bin/getstyle
usr/bin/seticons
usr/bin/setstyle
usr/bin/wdread
usr/bin/wdwrite
usr/bin/wmagnify
usr/bin/wmaker usr/lib/WindowMaker
usr/bin/wmgenmenu
usr/bin/wmiv
usr/bin/wmmenugen
usr/bin/wmsetbg
usr/share/lib/GNUstep/System/Applications/WPrefs.app/WPrefs usr/lib/GNUstep/System/Applications/WPrefs.app
usr/share/man/cs/man1/geticonset.1
usr/share/man/cs/man1/getstyle.1
usr/share/man/cs/man1/seticons.1
usr/share/man/cs/man1/setstyle.1
usr/share/man/cs/man1/wdwrite.1
usr/share/man/cs/man1/wmaker.1
usr/share/man/cs/man1/wmsetbg.1
usr/share/man/ru/man1/geticonset.1
usr/share/man/ru/man1/getstyle.1
usr/share/man/ru/man1/seticons.1
usr/share/man/ru/man1/setstyle.1
usr/share/man/ru/man1/wdwrite.1
usr/share/man/ru/man1/wmaker.1
usr/share/man/ru/man1/wmsetbg.1
usr/share/man/sk/man1/geticonset.1
usr/share/man/sk/man1/getstyle.1
usr/share/man/sk/man1/seticons.1
usr/share/man/sk/man1/setstyle.1
usr/share/man/sk/man1/wdwrite.1
usr/share/man/sk/man1/wmaker.1
usr/share/man/sk/man1/wmsetbg.1
-2
View File
@@ -1,2 +0,0 @@
usr/bin/wmaker usr/bin/WindowMaker
usr/lib/GNUstep/System/Applications/WPrefs.app/WPrefs usr/bin/WPrefs
-1
View File
@@ -1 +0,0 @@
rm_conffile /etc/menu-methods/wmaker 0.95.8-2~
-14
View File
@@ -1,14 +0,0 @@
doc/WPrefs.1
doc/WindowMaker.1
doc/geticonset.1
doc/getstyle.1
doc/seticons.1
doc/setstyle.1
doc/wdread.1
doc/wdwrite.1
doc/wmagnify.1
doc/wmaker.1
doc/wmgenmenu.1
doc/wmiv.1
doc/wmmenugen.1
doc/wmsetbg.1
-14
View File
@@ -1,14 +0,0 @@
#!/bin/sh
set -e
#DEBHELPER#
# run after debhelper code, which removes menu-methods.
if [ "$1" = "configure" ] &&
[ x"$2" != "x" ] &&
test -e /etc/GNUstep/Defaults/menu.hook &&
dpkg --compare-versions "$2" '<<' '0.95.8-2~' ; then
if head -n1 /etc/GNUstep/Defaults/menu.hook |
grep -q 'Automatically generated file. Do not edit' ; then
rm /etc/GNUstep/Defaults/menu.hook
fi
fi
-6
View File
@@ -1,6 +0,0 @@
#!/bin/sh
set -e
if [ "$1" = "purge" ] && test -e /etc/GNUstep/Defaults/menu.hook ; then
rm /etc/GNUstep/Defaults/menu.hook
fi
#DEBHELPER#
-1
View File
@@ -1 +0,0 @@
/usr/bin/wmaker
+46
View File
@@ -27,6 +27,11 @@ MOSTLYCLEANFILES = wmaker.1 wmsetbg.1
EXTRA_DIST = wmaker.in wmsetbg.in EXTRA_DIST = wmaker.in wmsetbg.in
################################################################################
# Generation of man pages that need processing
################################################################################
wmaker.1: wmaker.in Makefile $(top_builddir)/config.h wmaker.1: wmaker.in Makefile $(top_builddir)/config.h
$(AM_V_GEN)$(top_srcdir)/script/replace-ac-keywords.sh \ $(AM_V_GEN)$(top_srcdir)/script/replace-ac-keywords.sh \
--header "$(top_builddir)/config.h" --filter "HAVE_INOTIFY" \ --header "$(top_builddir)/config.h" --filter "HAVE_INOTIFY" \
@@ -40,6 +45,11 @@ wmsetbg.1: wmsetbg.in Makefile $(top_builddir)/config.h
--header "$(top_builddir)/config.h" --filter "USE_XINERAMA" \ --header "$(top_builddir)/config.h" --filter "USE_XINERAMA" \
-o "wmsetbg.1" "$(srcdir)/wmsetbg.in" -o "wmsetbg.1" "$(srcdir)/wmsetbg.in"
################################################################################
# Section for checking the man pages against the program's --help text
################################################################################
# Create a 'silent rule' for our make check the same way automake does # 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_$(V))
am__v_CHKOPTS_ = $(am__v_CHKOPTS_$(AM_DEFAULT_VERBOSITY)) am__v_CHKOPTS_ = $(am__v_CHKOPTS_$(AM_DEFAULT_VERBOSITY))
@@ -111,3 +121,39 @@ wxpaste-args:
.PHONY: wmaker-args WPrefs-args wmagnify-args geticonset-args getstyle-args seticons-args setstyle-args \ .PHONY: wmaker-args WPrefs-args wmagnify-args geticonset-args getstyle-args seticons-args setstyle-args \
wdread-args wdwrite-args wmgenmenu-args wmiv-args wmmenugen-args wmsetbg-args wxcopy-args wxpaste-args wdread-args wdwrite-args wmgenmenu-args wmiv-args wmmenugen-args wmsetbg-args wxcopy-args wxpaste-args
################################################################################
# Section related to generating HTML version of man pages for the website
################################################################################
if WITH_WEB_REPO
# We convert all man pages except those that are a link to other man page (.so command)
website: $(MANS) website.menu
@local_pages=`echo "$^" | sed -e 's/ [^ ]*\.menu$$// ; s,[^ /]*/,,g' `; \
generated_pages=""; \
for man in $^; do \
[ "$$man" = "website.menu" ] && continue; \
grep -i '^\.so[ \t]' "$$man" > /dev/null && continue; \
echo " MAN2HTML $$man"; \
$(top_srcdir)/script/generate-html-from-man.sh --groff $(GROFF) \
--output $(WEB_REPO_ROOT)/docs/manpages/`echo "$$man" | sed -e 's,[^ /]*/,,g ; s/\.[^.]*$$//' `.html \
--local-pages "$$local_pages" --external-url 'http://linux.die.net/man/%s/%l' \
--with-menu "website.menu" --package '$(PACKAGE_STRING)' \
$$man || exit $$?; \
generated_pages="$$generated_pages $$man"; \
done; \
echo " UPDATE index.md"; \
$(top_srcdir)/script/replace-generated-content.sh --man-pages "$$generated_pages" \
--template '<tr><td class="name"><a href="\1">\2</a></td><td class="section">\3</td><td>\4</td></tr>' \
--marker LIST_MANPAGES_COMMANDS $(WEB_REPO_ROOT)/docs/manpages/index.md
MOSTLYCLEANFILES += website.menu
# This menu is the icon bar to navigate on the website, which we want to keep on all man pages
# We extract it from the Template defined for all pages of the site
website.menu: $(WEB_REPO_ROOT)/_layouts/default.html
$(AM_V_GEN)sed -n -e '/<aside>/,/<\/aside>/ { s/{{ site.baseurl }}// ; s/^ // ; p }' $< > $@
endif
.PHONY: website
+1 -1
View File
@@ -7,7 +7,7 @@ WPrefs \- Window Maker configuration tool
.SH "DESCRIPTION" .SH "DESCRIPTION"
WPrefs.app is the preferences "editor" for the WindowMaker window manager. It WPrefs.app is the preferences "editor" for the WindowMaker window manager. It
can be used to set most of the preference options of WindowMaker and define can be used to set most of the preference options of WindowMaker and define
it's applications menu. It also can change some settings that do not belong to its applications menu. It also can change some settings that do not belong to
WindowMaker. WindowMaker.
.PP .PP
Although WPrefs.app is designed to be easy to use, you should read the Although WPrefs.app is designed to be easy to use, you should read the
+11 -3
View File
@@ -224,7 +224,7 @@ Get the @emph{GNU} version from @uref{http://www.gnu.org/software/gettext/}
This library can be used by the @emph{WINGs} toolkit to improve support for @emph{UTF-8} and for This library can be used by the @emph{WINGs} toolkit to improve support for @emph{UTF-8} and for
languages written in right-to-left direction, in some widgets. languages written in right-to-left direction, in some widgets.
You have to explicitly ask for its support through (@pxref{Configure Options}). If detected, it will be automatically used; you may request explicit support/ignore through (@pxref{Configure Options}).
You can get it from @uref{http://www.pango.org/Download} You can get it from @uref{http://www.pango.org/Download}
@item @emph{libbsd} @item @emph{libbsd}
@@ -484,8 +484,8 @@ even if your system provides it.
@item --disable-magick @item --disable-magick
Disable @emph{ImageMagick's MagickWand} support in @emph{WRaster}, used to support for image formats. Disable @emph{ImageMagick's MagickWand} support in @emph{WRaster}, used to support for image formats.
@item --enable-pango @item --disable-pango
Disabled by default, enable @emph{Pango} text layout support in @emph{WINGs}. Disable @emph{Pango} text layout support in @emph{WINGs}.
@item --disable-png @item --disable-png
Disable PNG support in @emph{WRaster}; when enabled use @file{libpng}. Disable PNG support in @emph{WRaster}; when enabled use @file{libpng}.
@@ -639,6 +639,14 @@ appropriate requirements and works with this.
Despite all this, if you think there's a use for it and feel in the mood to help, do not hesitate to Despite all this, if you think there's a use for it and feel in the mood to help, do not hesitate to
discuss on the mailing list @value{emailsupport} to get it working. discuss on the mailing list @value{emailsupport} to get it working.
@item --with-web-repo=@i{PATH}
Enable generation of HTML documentation to be uploaded to @sc{Window Maker}'s website.
The @file{@i{PATH}} is the directory where you have cloned the homepage's repository.
When enabled, the command @command{make website} generates a few HTML pages
and copy them into the specified directory, then you can commit them to publish on the web site.
You should not do that, it is handled by the development team.
@end table @end table
+4 -3
View File
@@ -419,23 +419,24 @@ submit your contribution to the project:
this is done with @command{git}. this is done with @command{git}.
@end itemize @end itemize
In @sc{Window Maker}, you have actually 4 @code{po} files to take care of: In @sc{Window Maker}, you have actually 5 @code{po} files to take care of:
@itemize @minus @itemize @minus
@item @file{po/@emph{<lang>}.po}: for @sc{Window Maker} itself @item @file{po/@emph{<lang>}.po}: for @sc{Window Maker} itself
@item @file{WPrefs.app/po/@emph{<lang>}.po}: for the Preference Editor program @item @file{WPrefs.app/po/@emph{<lang>}.po}: for the Preference Editor program
@item @file{WINGs/po/@emph{<lang>}.po}: for the graphic toolkit library @item @file{WINGs/po/@emph{<lang>}.po}: for the graphic toolkit library
@item @file{wrlib/po/@emph{<lang>}.po}: for the image processing library
@item @file{util/po/@emph{<lang>}.po}: for the command-line tools of @sc{Window Maker} @item @file{util/po/@emph{<lang>}.po}: for the command-line tools of @sc{Window Maker}
@end itemize @end itemize
As stated previously, there is a @command{make} target that can help you to automatically generate As stated previously, there is a @command{make} target that can help you to automatically generate
the POT and update the PO for these 4 cases: the POT and update the PO for these 5 cases:
@example @example
make update-lang PO=<lang> make update-lang PO=<lang>
@end example @end example
Once run, it will have updated as needed the 4 @code{po} files against the latest source code. Once run, it will have updated as needed the 5 @code{po} files against the latest source code.
You may wish to use the command @command{git gui} to view the changes; You may wish to use the command @command{git gui} to view the changes;
you can now edit the files to complete the translation, correct them, remove deprecated stuff, ... you can now edit the files to complete the translation, correct them, remove deprecated stuff, ...
Please note that the encoding should be set to @emph{UTF-8} as this is now the standard. Please note that the encoding should be set to @emph{UTF-8} as this is now the standard.

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