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
|
2002-10-23 22:15:48 +02:00
|
|
|
* Copyright 2002 Sylvain Petreolle
|
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
|
|
|
*/
|
|
|
|
|
2009-07-03 01:36:09 +02:00
|
|
|
#include "progman.h"
|
|
|
|
|
2010-04-28 01:07:20 +02:00
|
|
|
LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
|
|
|
|
|
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
|
|
|
|
2010-04-28 01:07:20 +02:00
|
|
|
MAIN_MENU MENU
|
2002-10-23 22:15:48 +02:00
|
|
|
{
|
|
|
|
POPUP "&File" {
|
|
|
|
MENUITEM "&New...", PM_NEW
|
|
|
|
MENUITEM "O&pen\tEnter", PM_OPEN
|
|
|
|
MENUITEM "&Move...\tF7", PM_MOVE, GRAYED
|
|
|
|
MENUITEM "&Copy...\tF8", PM_COPY, GRAYED
|
|
|
|
MENUITEM "&Delete\tEntf", PM_DELETE
|
|
|
|
MENUITEM "&Attributes...\tAlt+Enter", PM_ATTRIBUTES
|
|
|
|
MENUITEM SEPARATOR
|
|
|
|
MENUITEM "&Execute...", PM_EXECUTE
|
|
|
|
MENUITEM SEPARATOR
|
|
|
|
MENUITEM "E&xit Windows...", PM_EXIT
|
|
|
|
}
|
|
|
|
POPUP "&Options" {
|
|
|
|
MENUITEM "&Arrange automatically", PM_AUTO_ARRANGE
|
|
|
|
MENUITEM "&Minimize on run", PM_MIN_ON_RUN
|
|
|
|
MENUITEM "&Save settings on exit", PM_SAVE_SETTINGS
|
|
|
|
}
|
|
|
|
POPUP "&Windows" {
|
|
|
|
MENUITEM "&Overlapped\tShift+F5", PM_OVERLAP
|
|
|
|
MENUITEM "&Side by side\tShift+F4", PM_SIDE_BY_SIDE
|
2002-10-31 23:03:41 +01:00
|
|
|
MENUITEM "&Arrange Icons", PM_ARRANGE
|
2002-10-23 22:15:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
POPUP "&Help" {
|
|
|
|
MENUITEM "&Contents", PM_CONTENTS
|
|
|
|
MENUITEM "&Search...", PM_SEARCH
|
|
|
|
MENUITEM SEPARATOR
|
|
|
|
MENUITEM "&Help on Help", PM_HELPONHELP
|
|
|
|
MENUITEM "&Tutorial", PM_TUTORIAL
|
|
|
|
MENUITEM SEPARATOR
|
2010-05-19 16:44:56 +02:00
|
|
|
MENUITEM "&About Wine", PM_ABOUT_WINE
|
2002-10-23 22:15:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Dialog `New' */
|
|
|
|
|
2003-01-05 02:08:14 +01:00
|
|
|
DIALOG_NEW DIALOG 0, 0, 170, 65
|
2006-04-19 21:34:15 +02:00
|
|
|
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
2002-10-31 23:03:41 +01:00
|
|
|
CAPTION "New"
|
2002-10-23 22:15:48 +02:00
|
|
|
{
|
|
|
|
RADIOBUTTON "", PM_NEW_GROUP, 10, 15, 10, 15
|
2009-01-14 11:30:26 +01:00
|
|
|
LTEXT "Program &group", -1, 20, 18, 80, 15
|
2002-10-23 22:15:48 +02:00
|
|
|
RADIOBUTTON "", PM_NEW_PROGRAM, 10, 35, 10, 15
|
2009-01-14 11:30:26 +01:00
|
|
|
LTEXT "&Program", -1, 20, 38, 80, 15
|
2002-10-23 22:15:48 +02:00
|
|
|
DEFPUSHBUTTON "OK", IDOK, 105, 5, 60, 15, WS_TABSTOP
|
2002-10-31 23:03:41 +01:00
|
|
|
PUSHBUTTON "Cancel", IDCANCEL, 105, 25, 60, 15, WS_TABSTOP
|
|
|
|
PUSHBUTTON "&Help", PM_HELP, 105, 45, 60, 15, WS_TABSTOP
|
2002-10-23 22:15:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Dialog `Move' */
|
|
|
|
|
2003-01-05 02:08:14 +01:00
|
|
|
DIALOG_MOVE DIALOG 0, 0, 250, 65
|
2006-04-19 21:34:15 +02:00
|
|
|
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
2002-10-31 23:03:41 +01:00
|
|
|
CAPTION "Move Program"
|
2002-10-23 22:15:48 +02:00
|
|
|
{
|
2009-01-14 11:30:26 +01:00
|
|
|
LTEXT "Move program:", -1, 5, 5, 90, 15
|
2002-10-23 22:15:48 +02:00
|
|
|
LTEXT "", PM_PROGRAM, 95, 5, 90, 15
|
2009-01-14 11:30:26 +01:00
|
|
|
LTEXT "From group:", -1, 5, 13, 90, 15
|
2002-10-23 22:15:48 +02:00
|
|
|
LTEXT "", PM_FROM_GROUP, 95, 13, 90, 15
|
2002-10-31 23:03:41 +01:00
|
|
|
LTEXT "&To group:", PM_TO_GROUP_TXT, 5, 28, 140, 15
|
2002-10-23 22:15:48 +02:00
|
|
|
COMBOBOX PM_TO_GROUP, 5, 38, 140, 50, WS_TABSTOP | CBS_DROPDOWNLIST
|
|
|
|
DEFPUSHBUTTON "OK", IDOK, 185, 5, 60, 15, WS_TABSTOP
|
2002-10-31 23:03:41 +01:00
|
|
|
PUSHBUTTON "Cancel", IDCANCEL, 185, 25, 60, 15, WS_TABSTOP
|
|
|
|
PUSHBUTTON "&Help", PM_HELP, 185, 45, 60, 15, WS_TABSTOP
|
2002-10-23 22:15:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Dialog `Copy' */
|
|
|
|
|
2003-01-05 02:08:14 +01:00
|
|
|
DIALOG_COPY DIALOG 0, 0, 250, 65
|
2006-04-19 21:34:15 +02:00
|
|
|
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
2002-10-31 23:03:41 +01:00
|
|
|
CAPTION "Copy Program"
|
2002-10-23 22:15:48 +02:00
|
|
|
{
|
2009-01-14 11:30:26 +01:00
|
|
|
LTEXT "Copy program:", -1, 5, 5, 90, 15
|
2002-10-23 22:15:48 +02:00
|
|
|
LTEXT "", PM_PROGRAM, 95, 5, 90, 15
|
2009-01-14 11:30:26 +01:00
|
|
|
LTEXT "From group:", -1, 5, 13, 90, 15
|
2002-10-23 22:15:48 +02:00
|
|
|
LTEXT "", PM_FROM_GROUP, 95, 13, 90, 15
|
2003-10-04 05:09:06 +02:00
|
|
|
LTEXT "&To group:", PM_TO_GROUP_TXT, 5, 28, 140, 15
|
2002-10-23 22:15:48 +02:00
|
|
|
COMBOBOX PM_TO_GROUP, 5, 38, 140, 50, WS_TABSTOP | CBS_DROPDOWNLIST
|
2002-10-31 23:03:41 +01:00
|
|
|
DEFPUSHBUTTON "OK", IDOK, 185, 5, 60, 15, WS_TABSTOP
|
|
|
|
PUSHBUTTON "Cancel", IDCANCEL, 185, 25, 60, 15, WS_TABSTOP
|
|
|
|
PUSHBUTTON "&Help", PM_HELP, 185, 45, 60, 15, WS_TABSTOP
|
2002-10-23 22:15:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Dialog `Group attributes' */
|
|
|
|
|
2003-01-05 02:08:14 +01:00
|
|
|
DIALOG_GROUP DIALOG 0, 0, 230, 65
|
2006-04-19 21:34:15 +02:00
|
|
|
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
2002-10-31 23:03:41 +01:00
|
|
|
CAPTION "Program Group Attributes"
|
2002-10-23 22:15:48 +02:00
|
|
|
{
|
2002-10-31 23:03:41 +01:00
|
|
|
LTEXT "&Description:", PM_DESCRIPTION_TXT, 05, 18, 50, 10
|
2002-10-23 22:15:48 +02:00
|
|
|
EDITTEXT PM_DESCRIPTION, 60, 18, 90, 15, WS_TABSTOP
|
2002-10-31 23:03:41 +01:00
|
|
|
LTEXT "&Group file:", PM_FILE_TXT, 05, 38, 50, 10
|
2002-10-23 22:15:48 +02:00
|
|
|
EDITTEXT PM_FILE, 60, 38, 90, 15, WS_TABSTOP
|
|
|
|
DEFPUSHBUTTON "OK", IDOK, 155, 5, 60, 15, WS_TABSTOP
|
2002-10-31 23:03:41 +01:00
|
|
|
PUSHBUTTON "Cancel", IDCANCEL, 155, 25, 60, 15, WS_TABSTOP
|
|
|
|
PUSHBUTTON "&Help", PM_HELP, 155, 45, 60, 15, WS_TABSTOP
|
2002-10-23 22:15:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Dialog `Program attributes' */
|
|
|
|
|
2003-01-05 02:08:14 +01:00
|
|
|
DIALOG_PROGRAM DIALOG 0, 0, 250, 105
|
2006-04-19 21:34:15 +02:00
|
|
|
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
2002-10-31 23:03:41 +01:00
|
|
|
CAPTION "Program Attributes"
|
2002-10-23 22:15:48 +02:00
|
|
|
{
|
2002-10-31 23:03:41 +01:00
|
|
|
LTEXT "&Description:", PM_DESCRIPTION_TXT, 05, 10, 60, 10
|
2002-10-23 22:15:48 +02:00
|
|
|
EDITTEXT PM_DESCRIPTION, 80, 10, 90, 15, WS_TABSTOP
|
2002-10-31 23:03:41 +01:00
|
|
|
LTEXT "&Command line:", PM_COMMAND_LINE_TXT, 05, 25, 60, 10
|
2002-10-23 22:15:48 +02:00
|
|
|
EDITTEXT PM_COMMAND_LINE, 80, 25, 90, 15, WS_TABSTOP
|
2002-10-31 23:03:41 +01:00
|
|
|
LTEXT "&Working directory:", PM_DIRECTORY_TXT, 05, 40, 60, 10
|
2002-10-23 22:15:48 +02:00
|
|
|
EDITTEXT PM_DIRECTORY, 80, 40, 90, 15, WS_TABSTOP
|
2002-10-31 23:03:41 +01:00
|
|
|
LTEXT "&Key combination:", PM_HOT_KEY_TXT, 05, 55, 60, 10
|
2002-10-23 22:15:48 +02:00
|
|
|
EDITTEXT PM_HOT_KEY, 80, 55, 90, 15, WS_TABSTOP
|
|
|
|
ICON "", PM_ICON, 20, 70
|
|
|
|
CHECKBOX "", PM_SYMBOL, 80, 75, 10, 10, WS_TABSTOP
|
2009-01-14 11:30:26 +01:00
|
|
|
LTEXT "&Minimize at launch", -1, 95, 75, 75, 10
|
2002-10-23 22:15:48 +02:00
|
|
|
DEFPUSHBUTTON "OK", IDOK, 185, 5, 60, 15, WS_TABSTOP
|
2002-10-31 23:03:41 +01:00
|
|
|
PUSHBUTTON "Cancel", IDCANCEL, 185, 25, 60, 15, WS_TABSTOP
|
|
|
|
PUSHBUTTON "&Browse...", PM_BROWSE, 185, 45, 60, 15, WS_TABSTOP
|
|
|
|
PUSHBUTTON "Change &icon...", PM_OTHER_SYMBOL, 185, 65, 60, 15, WS_TABSTOP
|
|
|
|
PUSHBUTTON "&Help", PM_HELP, 185, 85, 60, 15, WS_TABSTOP
|
2002-10-23 22:15:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Dialog `Symbol' */
|
|
|
|
|
2003-01-05 02:08:14 +01:00
|
|
|
DIALOG_SYMBOL DIALOG 0, 0, 200, 85
|
2006-04-19 21:34:15 +02:00
|
|
|
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
2002-10-31 23:03:41 +01:00
|
|
|
CAPTION "Change Icon"
|
2002-10-23 22:15:48 +02:00
|
|
|
{
|
2002-10-31 23:03:41 +01:00
|
|
|
LTEXT "&Filename:", PM_ICON_FILE_TXT, 5, 15, 40, 10
|
2002-10-23 22:15:48 +02:00
|
|
|
EDITTEXT PM_ICON_FILE, 45, 15, 85, 15, WS_TABSTOP
|
2002-10-31 23:03:41 +01:00
|
|
|
LTEXT "Current &icon:", PM_SYMBOL_LIST_TXT, 5, 30, 125, 10
|
2002-10-23 22:15:48 +02:00
|
|
|
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
|
2002-10-31 23:03:41 +01:00
|
|
|
PUSHBUTTON "Cancel", IDCANCEL, 135, 25, 60, 15, WS_TABSTOP
|
|
|
|
PUSHBUTTON "&Browse...", PM_BROWSE, 135, 45, 60, 15, WS_TABSTOP
|
|
|
|
PUSHBUTTON "&Help", PM_HELP, 135, 65, 60, 15, WS_TABSTOP
|
2002-10-23 22:15:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Dialog `Execute' */
|
|
|
|
|
2003-01-05 02:08:14 +01:00
|
|
|
DIALOG_EXECUTE DIALOG 0, 0, 200, 85
|
2006-04-19 21:34:15 +02:00
|
|
|
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
2002-10-31 23:03:41 +01:00
|
|
|
CAPTION "Execute Program"
|
2002-10-23 22:15:48 +02:00
|
|
|
{
|
2009-01-14 11:30:26 +01:00
|
|
|
LTEXT "&Command line:", -1, 05, 15, 120, 10
|
2002-10-23 22:15:48 +02:00
|
|
|
EDITTEXT PM_COMMAND, 05, 25, 120, 15, WS_TABSTOP
|
|
|
|
CHECKBOX "", PM_SYMBOL, 05, 45, 10, 10, WS_TABSTOP
|
2009-01-14 11:30:26 +01:00
|
|
|
LTEXT "&Minimize at launch", -1, 20, 45, 120, 10
|
2002-10-23 22:15:48 +02:00
|
|
|
DEFPUSHBUTTON "OK", IDOK, 135, 5, 60, 15, WS_TABSTOP
|
2002-10-31 23:03:41 +01:00
|
|
|
PUSHBUTTON "Cancel", IDCANCEL, 135, 25, 60, 15, WS_TABSTOP
|
|
|
|
PUSHBUTTON "&Browse...", PM_BROWSE, 135, 45, 60, 15, WS_TABSTOP
|
|
|
|
PUSHBUTTON "&Help", PM_HELP, 135, 65, 60, 15, WS_TABSTOP
|
2002-10-23 22:15:48 +02:00
|
|
|
}
|
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 */
|
|
|
|
|
2010-07-21 23:56:57 +02:00
|
|
|
STRINGTABLE
|
2002-10-23 22:15:48 +02:00
|
|
|
{
|
2002-10-31 23:03:41 +01:00
|
|
|
IDS_PROGRAM_MANAGER, "Program Manager"
|
|
|
|
IDS_ERROR, "ERROR"
|
|
|
|
IDS_WARNING, "WARNING"
|
2002-10-23 22:15:48 +02:00
|
|
|
IDS_INFO, "Information"
|
2002-10-31 23:03:41 +01:00
|
|
|
IDS_DELETE, "Delete"
|
|
|
|
IDS_DELETE_GROUP_s, "Delete group `%s' ?"
|
|
|
|
IDS_DELETE_PROGRAM_s, "Delete program `%s' ?"
|
|
|
|
IDS_NOT_IMPLEMENTED, "Not implemented"
|
|
|
|
IDS_FILE_READ_ERROR_s, "Error reading `%s'."
|
|
|
|
IDS_FILE_WRITE_ERROR_s, "Error writing `%s'."
|
2002-10-23 22:15:48 +02:00
|
|
|
IDS_GRPFILE_READ_ERROR_s, "\
|
2002-10-31 23:03:41 +01:00
|
|
|
The group file `%s' cannot be opened.\n\
|
|
|
|
Should it be tried further on?"
|
|
|
|
IDS_OUT_OF_MEMORY, "Out of memory."
|
|
|
|
IDS_WINHELP_ERROR, "Help not available."
|
2005-11-23 20:14:43 +01:00
|
|
|
IDS_UNKNOWN_FEATURE_s, "Unknown feature in %s"
|
2002-10-31 23:03:41 +01:00
|
|
|
IDS_FILE_NOT_OVERWRITTEN_s, "File `%s' exists. Not overwritten."
|
|
|
|
IDS_SAVE_GROUP_AS_s, "Save group as `%s to prevent overwriting original files."
|
|
|
|
IDS_NO_HOT_KEY, "None"
|
|
|
|
IDS_ALL_FILES, "All files (*.*)"
|
|
|
|
IDS_PROGRAMS, "Programs"
|
|
|
|
IDS_LIBRARIES_DLL, "Libraries (*.dll)"
|
|
|
|
IDS_SYMBOL_FILES, "Icon files"
|
|
|
|
IDS_SYMBOLS_ICO, "Icons (*.ico)"
|
2002-10-23 22:15:48 +02:00
|
|
|
}
|