Release 960302
Sat Mar 2 18:19:06 1996 Alexandre Julliard <julliard@lrc.epfl.ch>
* [controls/scroll.c]
Fixed SCROLL_THUMB painting fixes from Alex Korobka to store the
current tracking window.
* [files/file.c]
Fixed two file descriptor leaks in FILE_OpenFile().
* [if1632/relay32.c] [loader/module.c] [loader/pe_image.c]
[tools/build.c]
Replaced LOADEDFILEINFO structure by OFSTRUCT.
* [memory/atom.c]
Reload the pointer to the atom table in ATOM_GetTable() and
ATOM_AddAtom() in case the LOCAL_Alloc() calls caused the table to
move in linear memory.
Fri Mar 1 11:57:13 1996 Frans van Dorsselaer <dorssel@rulhm1.leidenuniv.nl>
* [include/callback.h]
Added support for CallWordBreakProc().
* [controls/edit.c]
New caret handling (really efficient / fast).
Implemented EM_SETWORDBREAKPROC and EM_GETWORDBREAKPROC.
Fixed EM_SETFONT so it now also creates a proper new caret.
Wed Feb 28 22:03:34 1996 Daniel Schepler <daniel@frobnitz.wustl.edu>
* [controls/desktop.c] [misc/main.c] [windows/event.c] [windows/win.c]
Added WM_DELETE protocol to top-level windows.
* [controls/scroll.c]
Fixed a problem which caused slow scrolling to continue uncontrollably.
* [misc/exec.c]
Implemented ExitWindows().
* [windows/win.c]
Set top-level owned windows to be transient.
Wed Feb 28 19:13:22 1996 Ulrich Schmid <uschmid@mail.hh.provi.de>
* [programs/progman/*]
Added a program manager.
Wed Feb 28 18:38:01 1996 Duncan C Thomson <duncan@spd.eee.strath.ac.uk>
* [resources/sysres_Eo.c]
Added support for Esperanto [Eo] language.
Wed Feb 28 00:23:00 1996 Thomas Sandford <t.d.g.sandford@prds-grn.demon.co.uk>
* [if1632/user32.spec]
Added EndDialog, GetDlgItem, GetDlgItemInt, SetDlgItemInt,
* [win32/init.c]
Added task.h to includes. GetModuleHandleA() - return hInstance
if called with NULL parameter. Freecell needs this. NOTE this
may indicate a problem with differentiation between hModule and
hInstance within Wine.
* [win32/resource.c]
FindResource32() and LoadResource32() - Removed #if 0's around
conversion from hInstance to hModule. See remarks above.
* [win32/string32.c]
WIN32_UniLen() - removed stray semicolon.
Tue Feb 27 21:05:18 1996 Jim Peterson <jspeter@birch.ee.vt.edu>
* [windows/caret.c]
Set blink rate with call to GetProfileInt().
* [rc/winerc.c]
In new_style(), made initial flag settings WS_CHILD | WS_VISIBLE
instead of 0. This seems to correspond to Borland's defaults, and
the flags can be unset by using the (rather obtuse) "| NOT WS_CHILD"
or "| NOT WS_VISIBLE" technique in the *.rc file.
* [win32/time.c]
In GetLocalTime() and GetSystemTime(), used tv_sec field of result
returned by gettimeofday() instead of making second call to
time(). This eliminates clock jitter if the seconds change
between the two calls (rare, but possible).
* [include/wintypes.h]
Added "#define _far" and "#define _pascal".
* [windows/win.c]
Added function GetDesktopHwnd().
* [include/xmalloc.h]
Removed the '#ifdef HAVE_STDLIB_H' structure, since it seemed to
have been removed from 'configure', and was causing redefinition
warnings.
Tue Feb 27 19:31:11 1996 Albrecht Kleine <kleine@ak.sax.de>
* [windows/winpos.c]
Added RDW_ALLCHILDREN flag in SetWindowPos (handling SWP_FRAMECHANGED)
to force a repaint when setting menu bars with different rows.
Sun Feb 25 21:15:00 1996 Alex Korobka <alex@phm30.pharm.sunysb.edu>
* [windows/syscolors.c] [controls/scroll.c]
Fixed DrawFocusRect pen and SCROLL_THUMB painting.
1996-03-02 20:34:10 +01:00
|
|
|
|
/*
|
|
|
|
|
* Program Manager
|
|
|
|
|
*
|
|
|
|
|
* Copyright 1996 Ulrich Schmid
|
2004-07-21 00:08:24 +02:00
|
|
|
|
* Copyright 2002 Sylvain Petreolle
|
|
|
|
|
* Copyright 2004 Henning Gerhardt
|
2002-03-10 00:29:33 +01:00
|
|
|
|
*
|
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
|
* version 2.1 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
|
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 14:49:52 +02:00
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
Release 960302
Sat Mar 2 18:19:06 1996 Alexandre Julliard <julliard@lrc.epfl.ch>
* [controls/scroll.c]
Fixed SCROLL_THUMB painting fixes from Alex Korobka to store the
current tracking window.
* [files/file.c]
Fixed two file descriptor leaks in FILE_OpenFile().
* [if1632/relay32.c] [loader/module.c] [loader/pe_image.c]
[tools/build.c]
Replaced LOADEDFILEINFO structure by OFSTRUCT.
* [memory/atom.c]
Reload the pointer to the atom table in ATOM_GetTable() and
ATOM_AddAtom() in case the LOCAL_Alloc() calls caused the table to
move in linear memory.
Fri Mar 1 11:57:13 1996 Frans van Dorsselaer <dorssel@rulhm1.leidenuniv.nl>
* [include/callback.h]
Added support for CallWordBreakProc().
* [controls/edit.c]
New caret handling (really efficient / fast).
Implemented EM_SETWORDBREAKPROC and EM_GETWORDBREAKPROC.
Fixed EM_SETFONT so it now also creates a proper new caret.
Wed Feb 28 22:03:34 1996 Daniel Schepler <daniel@frobnitz.wustl.edu>
* [controls/desktop.c] [misc/main.c] [windows/event.c] [windows/win.c]
Added WM_DELETE protocol to top-level windows.
* [controls/scroll.c]
Fixed a problem which caused slow scrolling to continue uncontrollably.
* [misc/exec.c]
Implemented ExitWindows().
* [windows/win.c]
Set top-level owned windows to be transient.
Wed Feb 28 19:13:22 1996 Ulrich Schmid <uschmid@mail.hh.provi.de>
* [programs/progman/*]
Added a program manager.
Wed Feb 28 18:38:01 1996 Duncan C Thomson <duncan@spd.eee.strath.ac.uk>
* [resources/sysres_Eo.c]
Added support for Esperanto [Eo] language.
Wed Feb 28 00:23:00 1996 Thomas Sandford <t.d.g.sandford@prds-grn.demon.co.uk>
* [if1632/user32.spec]
Added EndDialog, GetDlgItem, GetDlgItemInt, SetDlgItemInt,
* [win32/init.c]
Added task.h to includes. GetModuleHandleA() - return hInstance
if called with NULL parameter. Freecell needs this. NOTE this
may indicate a problem with differentiation between hModule and
hInstance within Wine.
* [win32/resource.c]
FindResource32() and LoadResource32() - Removed #if 0's around
conversion from hInstance to hModule. See remarks above.
* [win32/string32.c]
WIN32_UniLen() - removed stray semicolon.
Tue Feb 27 21:05:18 1996 Jim Peterson <jspeter@birch.ee.vt.edu>
* [windows/caret.c]
Set blink rate with call to GetProfileInt().
* [rc/winerc.c]
In new_style(), made initial flag settings WS_CHILD | WS_VISIBLE
instead of 0. This seems to correspond to Borland's defaults, and
the flags can be unset by using the (rather obtuse) "| NOT WS_CHILD"
or "| NOT WS_VISIBLE" technique in the *.rc file.
* [win32/time.c]
In GetLocalTime() and GetSystemTime(), used tv_sec field of result
returned by gettimeofday() instead of making second call to
time(). This eliminates clock jitter if the seconds change
between the two calls (rare, but possible).
* [include/wintypes.h]
Added "#define _far" and "#define _pascal".
* [windows/win.c]
Added function GetDesktopHwnd().
* [include/xmalloc.h]
Removed the '#ifdef HAVE_STDLIB_H' structure, since it seemed to
have been removed from 'configure', and was causing redefinition
warnings.
Tue Feb 27 19:31:11 1996 Albrecht Kleine <kleine@ak.sax.de>
* [windows/winpos.c]
Added RDW_ALLCHILDREN flag in SetWindowPos (handling SWP_FRAMECHANGED)
to force a repaint when setting menu bars with different rows.
Sun Feb 25 21:15:00 1996 Alex Korobka <alex@phm30.pharm.sunysb.edu>
* [windows/syscolors.c] [controls/scroll.c]
Fixed DrawFocusRect pen and SCROLL_THUMB painting.
1996-03-02 20:34:10 +01:00
|
|
|
|
*/
|
|
|
|
|
|
1996-03-31 18:40:13 +02:00
|
|
|
|
/* Menu */
|
Release 960302
Sat Mar 2 18:19:06 1996 Alexandre Julliard <julliard@lrc.epfl.ch>
* [controls/scroll.c]
Fixed SCROLL_THUMB painting fixes from Alex Korobka to store the
current tracking window.
* [files/file.c]
Fixed two file descriptor leaks in FILE_OpenFile().
* [if1632/relay32.c] [loader/module.c] [loader/pe_image.c]
[tools/build.c]
Replaced LOADEDFILEINFO structure by OFSTRUCT.
* [memory/atom.c]
Reload the pointer to the atom table in ATOM_GetTable() and
ATOM_AddAtom() in case the LOCAL_Alloc() calls caused the table to
move in linear memory.
Fri Mar 1 11:57:13 1996 Frans van Dorsselaer <dorssel@rulhm1.leidenuniv.nl>
* [include/callback.h]
Added support for CallWordBreakProc().
* [controls/edit.c]
New caret handling (really efficient / fast).
Implemented EM_SETWORDBREAKPROC and EM_GETWORDBREAKPROC.
Fixed EM_SETFONT so it now also creates a proper new caret.
Wed Feb 28 22:03:34 1996 Daniel Schepler <daniel@frobnitz.wustl.edu>
* [controls/desktop.c] [misc/main.c] [windows/event.c] [windows/win.c]
Added WM_DELETE protocol to top-level windows.
* [controls/scroll.c]
Fixed a problem which caused slow scrolling to continue uncontrollably.
* [misc/exec.c]
Implemented ExitWindows().
* [windows/win.c]
Set top-level owned windows to be transient.
Wed Feb 28 19:13:22 1996 Ulrich Schmid <uschmid@mail.hh.provi.de>
* [programs/progman/*]
Added a program manager.
Wed Feb 28 18:38:01 1996 Duncan C Thomson <duncan@spd.eee.strath.ac.uk>
* [resources/sysres_Eo.c]
Added support for Esperanto [Eo] language.
Wed Feb 28 00:23:00 1996 Thomas Sandford <t.d.g.sandford@prds-grn.demon.co.uk>
* [if1632/user32.spec]
Added EndDialog, GetDlgItem, GetDlgItemInt, SetDlgItemInt,
* [win32/init.c]
Added task.h to includes. GetModuleHandleA() - return hInstance
if called with NULL parameter. Freecell needs this. NOTE this
may indicate a problem with differentiation between hModule and
hInstance within Wine.
* [win32/resource.c]
FindResource32() and LoadResource32() - Removed #if 0's around
conversion from hInstance to hModule. See remarks above.
* [win32/string32.c]
WIN32_UniLen() - removed stray semicolon.
Tue Feb 27 21:05:18 1996 Jim Peterson <jspeter@birch.ee.vt.edu>
* [windows/caret.c]
Set blink rate with call to GetProfileInt().
* [rc/winerc.c]
In new_style(), made initial flag settings WS_CHILD | WS_VISIBLE
instead of 0. This seems to correspond to Borland's defaults, and
the flags can be unset by using the (rather obtuse) "| NOT WS_CHILD"
or "| NOT WS_VISIBLE" technique in the *.rc file.
* [win32/time.c]
In GetLocalTime() and GetSystemTime(), used tv_sec field of result
returned by gettimeofday() instead of making second call to
time(). This eliminates clock jitter if the seconds change
between the two calls (rare, but possible).
* [include/wintypes.h]
Added "#define _far" and "#define _pascal".
* [windows/win.c]
Added function GetDesktopHwnd().
* [include/xmalloc.h]
Removed the '#ifdef HAVE_STDLIB_H' structure, since it seemed to
have been removed from 'configure', and was causing redefinition
warnings.
Tue Feb 27 19:31:11 1996 Albrecht Kleine <kleine@ak.sax.de>
* [windows/winpos.c]
Added RDW_ALLCHILDREN flag in SetWindowPos (handling SWP_FRAMECHANGED)
to force a repaint when setting menu bars with different rows.
Sun Feb 25 21:15:00 1996 Alex Korobka <alex@phm30.pharm.sunysb.edu>
* [windows/syscolors.c] [controls/scroll.c]
Fixed DrawFocusRect pen and SCROLL_THUMB painting.
1996-03-02 20:34:10 +01:00
|
|
|
|
|
2004-07-21 00:08:24 +02:00
|
|
|
|
MAIN_MENU MENU LANGUAGE LANG_GERMAN, SUBLANG_DEFAULT
|
|
|
|
|
{
|
|
|
|
|
POPUP "&Datei" {
|
|
|
|
|
MENUITEM "&Neu...", PM_NEW
|
|
|
|
|
MENUITEM "<22>&ffnen\tEingabetaste", PM_OPEN
|
|
|
|
|
MENUITEM "&Verschieben...\tF7", PM_MOVE, GRAYED
|
|
|
|
|
MENUITEM "&Kopieren...\tF8", PM_COPY, GRAYED
|
|
|
|
|
MENUITEM "&L<>schen\tEntf", PM_DELETE
|
|
|
|
|
MENUITEM "&Eigenschaften...\tAlt+Eingabetaste", PM_ATTRIBUTES
|
|
|
|
|
MENUITEM SEPARATOR
|
|
|
|
|
MENUITEM "&Ausf<73>hren...", PM_EXECUTE
|
|
|
|
|
MENUITEM SEPARATOR
|
|
|
|
|
MENUITEM "&Programm-Manager beenden...", PM_EXIT
|
|
|
|
|
}
|
|
|
|
|
POPUP "&Optionen" {
|
|
|
|
|
MENUITEM "&Automatisch anordnen", PM_AUTO_ARRANGE
|
|
|
|
|
MENUITEM "&Symbol nach Programmstart", PM_MIN_ON_RUN
|
|
|
|
|
MENUITEM "&Einstellungen beim Beenden speichern", PM_SAVE_SETTINGS
|
|
|
|
|
}
|
|
|
|
|
POPUP "&Fenster" {
|
|
|
|
|
MENUITEM "<22>ber&lappend\tUmschalt+F5", PM_OVERLAP
|
|
|
|
|
MENUITEM "&Nebeneinander\tUmschalt+F4", PM_SIDE_BY_SIDE
|
|
|
|
|
MENUITEM "&Symbole anordnen", PM_ARRANGE
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
POPUP "&Hilfe" {
|
|
|
|
|
MENUITEM "&Inhalt", PM_CONTENTS
|
|
|
|
|
MENUITEM "&Suchen...", PM_SEARCH
|
|
|
|
|
MENUITEM SEPARATOR
|
|
|
|
|
MENUITEM "Hilfe &benutzen", PM_HELPONHELP
|
|
|
|
|
MENUITEM "&Lernprogramm", PM_TUTORIAL
|
|
|
|
|
MENUITEM SEPARATOR
|
|
|
|
|
|
|
|
|
|
POPUP "&Info..." {
|
|
|
|
|
MENUITEM "&Lizenz", PM_LICENSE
|
|
|
|
|
MENUITEM "&KEINE GARANTIE", PM_NO_WARRANTY
|
|
|
|
|
MENUITEM "<22>&ber WINE", PM_ABOUT_WINE
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Dialog `New' */
|
|
|
|
|
|
|
|
|
|
DIALOG_NEW DIALOG 0, 0, 170, 65
|
|
|
|
|
LANGUAGE LANG_GERMAN, SUBLANG_DEFAULT
|
2006-04-19 21:34:15 +02:00
|
|
|
|
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
2004-07-21 00:08:24 +02:00
|
|
|
|
CAPTION "Neues Programmobjekt"
|
|
|
|
|
{
|
|
|
|
|
RADIOBUTTON "", PM_NEW_GROUP, 10, 15, 10, 15
|
|
|
|
|
LTEXT "Programm&gruppe", PM_NEW_GROUP, 20, 18, 80, 8
|
|
|
|
|
RADIOBUTTON "", PM_NEW_PROGRAM, 10, 35, 10, 15
|
|
|
|
|
LTEXT "&Programm", PM_NEW_PROGRAM, 20, 38, 80, 8
|
|
|
|
|
DEFPUSHBUTTON "OK", IDOK, 105, 5, 60, 15, WS_TABSTOP
|
|
|
|
|
PUSHBUTTON "Abbrechen", IDCANCEL, 105, 25, 60, 15, WS_TABSTOP
|
|
|
|
|
PUSHBUTTON "&Hilfe", PM_HELP, 105, 45, 60, 15, WS_TABSTOP
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Dialog `Move' */
|
|
|
|
|
|
|
|
|
|
DIALOG_MOVE DIALOG 0, 0, 250, 65
|
|
|
|
|
LANGUAGE LANG_GERMAN, SUBLANG_DEFAULT
|
2006-04-19 21:34:15 +02:00
|
|
|
|
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
2004-07-21 00:08:24 +02:00
|
|
|
|
CAPTION "Programm verschieben"
|
|
|
|
|
{
|
|
|
|
|
LTEXT "Verschiebe Programm:", IDIGNORE, 5, 5, 90, 15
|
|
|
|
|
LTEXT "", PM_PROGRAM, 95, 5, 90, 15
|
|
|
|
|
LTEXT "Von Programmgruppe:", IDIGNORE, 5, 13, 90, 15
|
|
|
|
|
LTEXT "", PM_FROM_GROUP, 95, 13, 90, 15
|
|
|
|
|
LTEXT "&in Gruppe:", PM_TO_GROUP_TXT, 5, 28, 140, 15
|
|
|
|
|
COMBOBOX PM_TO_GROUP, 5, 38, 140, 50, WS_TABSTOP | CBS_DROPDOWNLIST
|
|
|
|
|
DEFPUSHBUTTON "OK", IDOK, 185, 5, 60, 15, WS_TABSTOP
|
|
|
|
|
PUSHBUTTON "Abbrechen", IDCANCEL, 185, 25, 60, 15, WS_TABSTOP
|
|
|
|
|
PUSHBUTTON "&Hilfe", PM_HELP, 185, 45, 60, 15, WS_TABSTOP
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Dialog `Copy' */
|
|
|
|
|
|
|
|
|
|
DIALOG_COPY DIALOG 0, 0, 250, 65
|
|
|
|
|
LANGUAGE LANG_GERMAN, SUBLANG_DEFAULT
|
2006-04-19 21:34:15 +02:00
|
|
|
|
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
2004-07-21 00:08:24 +02:00
|
|
|
|
CAPTION "Programm kopieren"
|
|
|
|
|
{
|
|
|
|
|
LTEXT "Kopiere Programm:", IDIGNORE, 5, 5, 90, 15
|
|
|
|
|
LTEXT "", PM_PROGRAM, 95, 5, 90, 15
|
|
|
|
|
LTEXT "Von Programmgruppe:", IDIGNORE, 5, 13, 90, 15
|
|
|
|
|
LTEXT "", PM_FROM_GROUP, 95, 13, 90, 15
|
|
|
|
|
LTEXT "&in Gruppe:", PM_TO_GROUP_TXT, 5, 28, 140, 15
|
|
|
|
|
COMBOBOX PM_TO_GROUP, 5, 38, 140, 50, WS_TABSTOP | CBS_DROPDOWNLIST
|
|
|
|
|
DEFPUSHBUTTON "OK", IDOK, 185, 5, 60, 15, WS_TABSTOP
|
|
|
|
|
PUSHBUTTON "Abbrechen", IDCANCEL, 185, 25, 60, 15, WS_TABSTOP
|
|
|
|
|
PUSHBUTTON "&Hilfe", PM_HELP, 185, 45, 60, 15, WS_TABSTOP
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Dialog `Group attributes' */
|
|
|
|
|
|
|
|
|
|
DIALOG_GROUP DIALOG 0, 0, 230, 65
|
|
|
|
|
LANGUAGE LANG_GERMAN, SUBLANG_DEFAULT
|
2006-04-19 21:34:15 +02:00
|
|
|
|
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
2004-07-21 00:08:24 +02:00
|
|
|
|
CAPTION "Programmgruppeneigenschaften"
|
|
|
|
|
{
|
|
|
|
|
LTEXT "&Beschreibung:", PM_DESCRIPTION_TXT, 05, 18, 50, 8
|
|
|
|
|
EDITTEXT PM_DESCRIPTION, 60, 18, 90, 12, WS_TABSTOP
|
|
|
|
|
LTEXT "&Gruppendatei:", PM_FILE_TXT, 05, 38, 50, 8
|
|
|
|
|
EDITTEXT PM_FILE, 60, 38, 90, 12, WS_TABSTOP
|
|
|
|
|
DEFPUSHBUTTON "OK", IDOK, 155, 5, 60, 15, WS_TABSTOP
|
|
|
|
|
PUSHBUTTON "Abbrechen", IDCANCEL, 155, 25, 60, 15, WS_TABSTOP
|
|
|
|
|
PUSHBUTTON "&Hilfe", PM_HELP, 155, 45, 60, 15, WS_TABSTOP
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Dialog `Program attributes' */
|
|
|
|
|
|
|
|
|
|
DIALOG_PROGRAM DIALOG 0, 0, 250, 105
|
|
|
|
|
LANGUAGE LANG_GERMAN, SUBLANG_DEFAULT
|
2006-04-19 21:34:15 +02:00
|
|
|
|
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
2004-07-21 00:08:24 +02:00
|
|
|
|
CAPTION "Programmeigenschaften"
|
|
|
|
|
{
|
|
|
|
|
LTEXT "&Beschreibung:", PM_DESCRIPTION_TXT, 05, 10, 60, 8
|
|
|
|
|
EDITTEXT PM_DESCRIPTION, 80, 10, 90, 12, WS_TABSTOP
|
|
|
|
|
LTEXT "&Befehls&zeile:", PM_COMMAND_LINE_TXT, 05, 25, 60, 8
|
|
|
|
|
EDITTEXT PM_COMMAND_LINE, 80, 25, 90, 12, WS_TABSTOP
|
|
|
|
|
LTEXT "&Arbeitsverzeichnis:", PM_DIRECTORY_TXT, 05, 40, 60, 8
|
|
|
|
|
EDITTEXT PM_DIRECTORY, 80, 40, 90, 12, WS_TABSTOP
|
|
|
|
|
LTEXT "&Tastenkombination:", PM_HOT_KEY_TXT, 05, 55, 60, 8
|
|
|
|
|
EDITTEXT PM_HOT_KEY, 80, 55, 90, 12, WS_TABSTOP
|
|
|
|
|
ICON "", PM_ICON, 20, 70
|
|
|
|
|
CHECKBOX "", PM_SYMBOL, 80, 75, 10, 10, WS_TABSTOP
|
|
|
|
|
LTEXT "Als Sy&mbol", IDIGNORE, 95, 75, 75, 10
|
|
|
|
|
DEFPUSHBUTTON "OK", IDOK, 185, 5, 60, 15, WS_TABSTOP
|
|
|
|
|
PUSHBUTTON "Abbrechen", IDCANCEL, 185, 25, 60, 15, WS_TABSTOP
|
|
|
|
|
PUSHBUTTON "&Durchsuchen...", PM_BROWSE, 185, 45, 60, 15, WS_TABSTOP
|
|
|
|
|
PUSHBUTTON "Anderes &Symbol...", PM_OTHER_SYMBOL, 185, 65, 60, 15, WS_TABSTOP
|
|
|
|
|
PUSHBUTTON "&Hilfe", PM_HELP, 185, 85, 60, 15, WS_TABSTOP
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Dialog `Symbol' */
|
|
|
|
|
|
|
|
|
|
DIALOG_SYMBOL DIALOG 0, 0, 200, 85
|
|
|
|
|
LANGUAGE LANG_GERMAN, SUBLANG_DEFAULT
|
2006-04-19 21:34:15 +02:00
|
|
|
|
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
2004-07-21 00:08:24 +02:00
|
|
|
|
CAPTION "Symbol ausw<73>hlen"
|
|
|
|
|
{
|
|
|
|
|
LTEXT "Datei&name:", PM_ICON_FILE_TXT, 5, 15, 40, 10
|
|
|
|
|
EDITTEXT PM_ICON_FILE, 45, 15, 85, 12, WS_TABSTOP
|
|
|
|
|
LTEXT "&Aktuelles Symbol:", PM_SYMBOL_LIST_TXT, 5, 30, 125, 10
|
|
|
|
|
COMBOBOX PM_SYMBOL_LIST, 5, 40, 125, 50,
|
|
|
|
|
CBS_DROPDOWNLIST | CBS_AUTOHSCROLL | CBS_OWNERDRAWFIXED | WS_TABSTOP
|
|
|
|
|
DEFPUSHBUTTON "OK", IDOK, 135, 5, 60, 15, WS_TABSTOP
|
|
|
|
|
PUSHBUTTON "Abbrechen", IDCANCEL, 135, 25, 60, 15, WS_TABSTOP
|
|
|
|
|
PUSHBUTTON "&Durchsuchen...", PM_BROWSE, 135, 45, 60, 15, WS_TABSTOP
|
|
|
|
|
PUSHBUTTON "&Hilfe", PM_HELP, 135, 65, 60, 15, WS_TABSTOP
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Dialog `Execute' */
|
|
|
|
|
|
|
|
|
|
DIALOG_EXECUTE DIALOG 0, 0, 200, 85
|
|
|
|
|
LANGUAGE LANG_GERMAN, SUBLANG_DEFAULT
|
2006-04-19 21:34:15 +02:00
|
|
|
|
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
2004-07-21 00:08:24 +02:00
|
|
|
|
CAPTION "Programm ausf<73>hren"
|
|
|
|
|
{
|
|
|
|
|
LTEXT "&Befehlszeile:", IDIGNORE, 05, 15, 120, 10
|
|
|
|
|
EDITTEXT PM_COMMAND, 05, 25, 120, 12, WS_TABSTOP
|
|
|
|
|
CHECKBOX "", PM_SYMBOL, 05, 45, 10, 10, WS_TABSTOP
|
|
|
|
|
LTEXT "Als Sy&mbol", IDIGNORE, 20, 45, 120, 10
|
|
|
|
|
DEFPUSHBUTTON "OK", IDOK, 135, 5, 60, 15, WS_TABSTOP
|
|
|
|
|
PUSHBUTTON "Abbrechen", IDCANCEL, 135, 25, 60, 15, WS_TABSTOP
|
|
|
|
|
PUSHBUTTON "&Durchsuchen...", PM_BROWSE, 135, 45, 60, 15, WS_TABSTOP
|
|
|
|
|
PUSHBUTTON "&Hilfe", PM_HELP, 135, 65, 60, 15, WS_TABSTOP
|
|
|
|
|
}
|
Release 960302
Sat Mar 2 18:19:06 1996 Alexandre Julliard <julliard@lrc.epfl.ch>
* [controls/scroll.c]
Fixed SCROLL_THUMB painting fixes from Alex Korobka to store the
current tracking window.
* [files/file.c]
Fixed two file descriptor leaks in FILE_OpenFile().
* [if1632/relay32.c] [loader/module.c] [loader/pe_image.c]
[tools/build.c]
Replaced LOADEDFILEINFO structure by OFSTRUCT.
* [memory/atom.c]
Reload the pointer to the atom table in ATOM_GetTable() and
ATOM_AddAtom() in case the LOCAL_Alloc() calls caused the table to
move in linear memory.
Fri Mar 1 11:57:13 1996 Frans van Dorsselaer <dorssel@rulhm1.leidenuniv.nl>
* [include/callback.h]
Added support for CallWordBreakProc().
* [controls/edit.c]
New caret handling (really efficient / fast).
Implemented EM_SETWORDBREAKPROC and EM_GETWORDBREAKPROC.
Fixed EM_SETFONT so it now also creates a proper new caret.
Wed Feb 28 22:03:34 1996 Daniel Schepler <daniel@frobnitz.wustl.edu>
* [controls/desktop.c] [misc/main.c] [windows/event.c] [windows/win.c]
Added WM_DELETE protocol to top-level windows.
* [controls/scroll.c]
Fixed a problem which caused slow scrolling to continue uncontrollably.
* [misc/exec.c]
Implemented ExitWindows().
* [windows/win.c]
Set top-level owned windows to be transient.
Wed Feb 28 19:13:22 1996 Ulrich Schmid <uschmid@mail.hh.provi.de>
* [programs/progman/*]
Added a program manager.
Wed Feb 28 18:38:01 1996 Duncan C Thomson <duncan@spd.eee.strath.ac.uk>
* [resources/sysres_Eo.c]
Added support for Esperanto [Eo] language.
Wed Feb 28 00:23:00 1996 Thomas Sandford <t.d.g.sandford@prds-grn.demon.co.uk>
* [if1632/user32.spec]
Added EndDialog, GetDlgItem, GetDlgItemInt, SetDlgItemInt,
* [win32/init.c]
Added task.h to includes. GetModuleHandleA() - return hInstance
if called with NULL parameter. Freecell needs this. NOTE this
may indicate a problem with differentiation between hModule and
hInstance within Wine.
* [win32/resource.c]
FindResource32() and LoadResource32() - Removed #if 0's around
conversion from hInstance to hModule. See remarks above.
* [win32/string32.c]
WIN32_UniLen() - removed stray semicolon.
Tue Feb 27 21:05:18 1996 Jim Peterson <jspeter@birch.ee.vt.edu>
* [windows/caret.c]
Set blink rate with call to GetProfileInt().
* [rc/winerc.c]
In new_style(), made initial flag settings WS_CHILD | WS_VISIBLE
instead of 0. This seems to correspond to Borland's defaults, and
the flags can be unset by using the (rather obtuse) "| NOT WS_CHILD"
or "| NOT WS_VISIBLE" technique in the *.rc file.
* [win32/time.c]
In GetLocalTime() and GetSystemTime(), used tv_sec field of result
returned by gettimeofday() instead of making second call to
time(). This eliminates clock jitter if the seconds change
between the two calls (rare, but possible).
* [include/wintypes.h]
Added "#define _far" and "#define _pascal".
* [windows/win.c]
Added function GetDesktopHwnd().
* [include/xmalloc.h]
Removed the '#ifdef HAVE_STDLIB_H' structure, since it seemed to
have been removed from 'configure', and was causing redefinition
warnings.
Tue Feb 27 19:31:11 1996 Albrecht Kleine <kleine@ak.sax.de>
* [windows/winpos.c]
Added RDW_ALLCHILDREN flag in SetWindowPos (handling SWP_FRAMECHANGED)
to force a repaint when setting menu bars with different rows.
Sun Feb 25 21:15:00 1996 Alex Korobka <alex@phm30.pharm.sunysb.edu>
* [windows/syscolors.c] [controls/scroll.c]
Fixed DrawFocusRect pen and SCROLL_THUMB painting.
1996-03-02 20:34:10 +01:00
|
|
|
|
|
1996-03-31 18:40:13 +02:00
|
|
|
|
/* Strings */
|
|
|
|
|
|
2004-07-21 00:08:24 +02:00
|
|
|
|
STRINGTABLE DISCARDABLE LANGUAGE LANG_GERMAN, SUBLANG_DEFAULT
|
|
|
|
|
{
|
|
|
|
|
IDS_PROGRAM_MANAGER, "Programm-Manager"
|
|
|
|
|
IDS_ERROR, "FEHLER"
|
|
|
|
|
IDS_WARNING, "ACHTUNG"
|
|
|
|
|
IDS_INFO, "Information"
|
|
|
|
|
IDS_DELETE, "L<>schen"
|
|
|
|
|
IDS_DELETE_GROUP_s, "L<>sche Programmgruppe `%s' ?"
|
|
|
|
|
IDS_DELETE_PROGRAM_s, "L<>sche Programm `%s' ?"
|
|
|
|
|
IDS_NOT_IMPLEMENTED, "Nicht implementiert"
|
|
|
|
|
IDS_FILE_READ_ERROR_s, "Fehler beim Lesen von`%s'."
|
|
|
|
|
IDS_FILE_WRITE_ERROR_s, "Fehler beim Schreiben von`%s'."
|
|
|
|
|
IDS_GRPFILE_READ_ERROR_s, "Die Programmgruppendatei `%s' kann nicht ge<67>ffnet werden.\n\ Soll weiterhin versucht werden, diese Datei zu laden ?"
|
|
|
|
|
IDS_OUT_OF_MEMORY, "Zu wenig Hauptspeicher."
|
|
|
|
|
IDS_WINHELP_ERROR, "Keine Hilfe verf<72>gbar."
|
|
|
|
|
IDS_UNKNOWN_FEATURE_s, "Unbekannte Eigenschaft in %s"
|
|
|
|
|
IDS_FILE_NOT_OVERWRITTEN_s, "Datei `%s' existiert. Sie wird nicht <20>berschrieben."
|
|
|
|
|
IDS_SAVE_GROUP_AS_s, "Die Programmgruppe wird als `%s' gesichert, um das <20>berschreiben der Originaldatei zu verhindern."
|
|
|
|
|
IDS_NO_HOT_KEY, "Keine"
|
|
|
|
|
IDS_ALL_FILES, "Alle Dateien (*.*)"
|
|
|
|
|
IDS_PROGRAMS, "Programme"
|
|
|
|
|
IDS_LIBRARIES_DLL, "Bibliotheken (*.dll)"
|
|
|
|
|
IDS_SYMBOL_FILES, "Symboldateien"
|
|
|
|
|
IDS_SYMBOLS_ICO, "Symbole (*.ico)"
|
|
|
|
|
}
|