mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 07:56:59 +00:00
- start implementing create shortcut wizard
svn path=/trunk/; revision=29364
This commit is contained in:
parent
1b282a3cb5
commit
8146f33427
22 changed files with 487 additions and 7 deletions
|
@ -29,7 +29,7 @@
|
|||
#include <windows.h>
|
||||
#include <commctrl.h>
|
||||
#include <cpl.h>
|
||||
|
||||
#include <prsht.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <stdarg.h>
|
||||
|
@ -347,3 +347,97 @@ DllMain(HINSTANCE hinstDLL, DWORD dwReason, LPVOID lpvReserved)
|
|||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
INT_PTR
|
||||
CALLBACK
|
||||
WelcomeDlgProc(HWND hwndDlg,
|
||||
UINT uMsg,
|
||||
WPARAM wParam,
|
||||
LPARAM lParam)
|
||||
{
|
||||
switch(uMsg)
|
||||
{
|
||||
case WM_INITDIALOG:
|
||||
PropSheet_SetWizButtons(GetParent(hwndDlg), 0);
|
||||
break;
|
||||
case WM_COMMAND:
|
||||
switch(HIWORD(wParam))
|
||||
{
|
||||
case EN_CHANGE:
|
||||
if (SendDlgItemMessage(hwndDlg, IDC_SHORTCUT_LOCATION, WM_GETTEXTLENGTH, 0, 0))
|
||||
{
|
||||
PropSheet_SetWizButtons(GetParent(hwndDlg), PSWIZB_NEXT);
|
||||
}
|
||||
else
|
||||
{
|
||||
PropSheet_SetWizButtons(GetParent(hwndDlg), 0);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
INT_PTR
|
||||
CALLBACK
|
||||
FinishDlgProc(HWND hwndDlg,
|
||||
UINT uMsg,
|
||||
WPARAM wParam,
|
||||
LPARAM lParam)
|
||||
{
|
||||
switch(uMsg)
|
||||
{
|
||||
case WM_INITDIALOG:
|
||||
PropSheet_SetWizButtons(GetParent(hwndDlg), PSWIZB_BACK | PSWIZB_FINISH);
|
||||
break;
|
||||
}
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
||||
LONG CALLBACK
|
||||
NewLinkHere(HWND hwndCPl, UINT uMsg, LPARAM lParam1, LPARAM lParam2)
|
||||
{
|
||||
PROPSHEETHEADERW psh;
|
||||
HPROPSHEETPAGE ahpsp[2];
|
||||
PROPSHEETPAGE psp;
|
||||
UINT nPages = 0;
|
||||
|
||||
/* Create the Welcome page */
|
||||
psp.dwSize = sizeof(PROPSHEETPAGE);
|
||||
psp.dwFlags = PSP_DEFAULT | PSP_HIDEHEADER;
|
||||
psp.hInstance = hApplet;
|
||||
psp.pfnDlgProc = WelcomeDlgProc;
|
||||
psp.pszTemplate = MAKEINTRESOURCE(IDD_SHORTCUT_LOCATION);
|
||||
ahpsp[nPages++] = CreatePropertySheetPage(&psp);
|
||||
|
||||
/* Create the Finish page */
|
||||
psp.dwFlags = PSP_DEFAULT | PSP_HIDEHEADER;
|
||||
psp.pfnDlgProc = FinishDlgProc;
|
||||
psp.pszTemplate = MAKEINTRESOURCE(IDD_SHORTCUT_FINISH);
|
||||
ahpsp[nPages++] = CreatePropertySheetPage(&psp);
|
||||
|
||||
|
||||
/* Create the property sheet */
|
||||
psh.dwSize = sizeof(PROPSHEETHEADER);
|
||||
psh.dwFlags = PSH_WIZARD97 | PSH_WATERMARK;
|
||||
psh.hInstance = hApplet;
|
||||
psh.hwndParent = NULL;
|
||||
psh.nPages = nPages;
|
||||
psh.nStartPage = 0;
|
||||
psh.phpage = ahpsp;
|
||||
psh.pszbmWatermark = MAKEINTRESOURCE(IDB_WATERMARK);
|
||||
|
||||
/* Display the wizard */
|
||||
PropertySheet(&psh);
|
||||
|
||||
return TRUE;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
|
|
@ -2,5 +2,6 @@ LIBRARY appwiz.cpl
|
|||
|
||||
EXPORTS
|
||||
CPlApplet
|
||||
NewLinkHere
|
||||
|
||||
; EOF
|
||||
|
|
|
@ -16,5 +16,6 @@ LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
|
|||
123 24 DISCARDABLE "manifest.xml"
|
||||
|
||||
IDI_CPLSYSTEM ICON "resources/applet.ico"
|
||||
IDB_WATERMARK BITMAP "resources/watermark.bmp"
|
||||
|
||||
#include "rsrc.rc"
|
||||
|
|
|
@ -44,6 +44,28 @@ BEGIN
|
|||
LTEXT "Text3",-1,10,55,120,20
|
||||
END
|
||||
|
||||
IDD_SHORTCUT_LOCATION DIALOGEX 0, 0, 340, 200
|
||||
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
|
||||
CAPTION "Create Shortcut"
|
||||
FONT 8, "MS Shell Dlg", 0, 0, 0x0
|
||||
BEGIN
|
||||
LTEXT "This wizard helps you to create shortcuts to local or\nnetwork programs, files, folders, computers, or Internet\naddresses.", -1, 120, 15, 200, 30
|
||||
LTEXT "Type the location of the item:", -1, 120, 50, 120, 10
|
||||
EDITTEXT IDC_SHORTCUT_LOCATION, 120, 65, 150, 15, ES_LEFT
|
||||
PUSHBUTTON "Browse...", IDC_SHORTCUT_BROWSE, 280, 60, 70, 15, ES_LEFT
|
||||
LTEXT "Click Next to continue.", -1, 120, 100, 90, 10
|
||||
END
|
||||
|
||||
IDD_SHORTCUT_FINISH DIALOGEX 0, 0, 340, 200
|
||||
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
|
||||
CAPTION "Select a Title for the Program"
|
||||
FONT 8, "MS Shell Dlg", 0, 0, 0x0
|
||||
BEGIN
|
||||
LTEXT "&Type a name for this shortcut:", -1, 120, 15, 150, 10
|
||||
EDITTEXT IDC_SHORTCUT_NAME, 120, 35, 150, 15, ES_LEFT
|
||||
LTEXT "Click Finish to create the shortcut.", -1, 120, 50, 150, 10
|
||||
END
|
||||
|
||||
STRINGTABLE
|
||||
BEGIN
|
||||
IDS_CPLSYSTEMNAME "Добавяне/Премахване на програми"
|
||||
|
|
|
@ -44,6 +44,28 @@ BEGIN
|
|||
LTEXT "Text3",-1,10,55,120,20
|
||||
END
|
||||
|
||||
IDD_SHORTCUT_LOCATION DIALOGEX 0, 0, 340, 200
|
||||
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
|
||||
CAPTION "Create Shortcut"
|
||||
FONT 8, "MS Shell Dlg", 0, 0, 0x0
|
||||
BEGIN
|
||||
LTEXT "This wizard helps you to create shortcuts to local or\nnetwork programs, files, folders, computers, or Internet\naddresses.", -1, 120, 15, 200, 30
|
||||
LTEXT "Type the location of the item:", -1, 120, 50, 120, 10
|
||||
EDITTEXT IDC_SHORTCUT_LOCATION, 120, 65, 150, 15, ES_LEFT
|
||||
PUSHBUTTON "Browse...", IDC_SHORTCUT_BROWSE, 280, 60, 70, 15, ES_LEFT
|
||||
LTEXT "Click Next to continue.", -1, 120, 100, 90, 10
|
||||
END
|
||||
|
||||
IDD_SHORTCUT_FINISH DIALOGEX 0, 0, 340, 200
|
||||
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
|
||||
CAPTION "Select a Title for the Program"
|
||||
FONT 8, "MS Shell Dlg", 0, 0, 0x0
|
||||
BEGIN
|
||||
LTEXT "&Type a name for this shortcut:", -1, 120, 15, 150, 10
|
||||
EDITTEXT IDC_SHORTCUT_NAME, 120, 35, 150, 15, ES_LEFT
|
||||
LTEXT "Click Finish to create the shortcut.", -1, 120, 50, 150, 10
|
||||
END
|
||||
|
||||
STRINGTABLE
|
||||
BEGIN
|
||||
IDS_CPLSYSTEMNAME "Pøidat/Odebrat aplikace"
|
||||
|
|
|
@ -44,6 +44,28 @@ BEGIN
|
|||
LTEXT "Tekst 3",-1,10,55,120,20
|
||||
END
|
||||
|
||||
IDD_SHORTCUT_LOCATION DIALOGEX 0, 0, 340, 200
|
||||
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
|
||||
CAPTION "Create Shortcut"
|
||||
FONT 8, "MS Shell Dlg", 0, 0, 0x0
|
||||
BEGIN
|
||||
LTEXT "This wizard helps you to create shortcuts to local or\nnetwork programs, files, folders, computers, or Internet\naddresses.", -1, 120, 15, 200, 30
|
||||
LTEXT "Type the location of the item:", -1, 120, 50, 120, 10
|
||||
EDITTEXT IDC_SHORTCUT_LOCATION, 120, 65, 150, 15, ES_LEFT
|
||||
PUSHBUTTON "Browse...", IDC_SHORTCUT_BROWSE, 280, 60, 70, 15, ES_LEFT
|
||||
LTEXT "Click Next to continue.", -1, 120, 100, 90, 10
|
||||
END
|
||||
|
||||
IDD_SHORTCUT_FINISH DIALOGEX 0, 0, 340, 200
|
||||
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
|
||||
CAPTION "Select a Title for the Program"
|
||||
FONT 8, "MS Shell Dlg", 0, 0, 0x0
|
||||
BEGIN
|
||||
LTEXT "&Type a name for this shortcut:", -1, 120, 15, 150, 10
|
||||
EDITTEXT IDC_SHORTCUT_NAME, 120, 35, 150, 15, ES_LEFT
|
||||
LTEXT "Click Finish to create the shortcut.", -1, 120, 50, 150, 10
|
||||
END
|
||||
|
||||
STRINGTABLE
|
||||
BEGIN
|
||||
IDS_CPLSYSTEMNAME "Tilføjer/Fjerner Programmer"
|
||||
|
|
|
@ -44,6 +44,28 @@ BEGIN
|
|||
LTEXT "Text3",-1,10,55,120,20
|
||||
END
|
||||
|
||||
IDD_SHORTCUT_LOCATION DIALOGEX 0, 0, 340, 200
|
||||
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
|
||||
CAPTION "Create Shortcut"
|
||||
FONT 8, "MS Shell Dlg", 0, 0, 0x0
|
||||
BEGIN
|
||||
LTEXT "Mit diesem Assistenten können Sie Verknüpfungen mit\nlokalen oder vernetzten Programmen, Dateien, Ordnern,\nComputern oder Internetaddressen erstellen.", -1, 120, 15, 200, 30
|
||||
LTEXT "&Geben Sie den Speicherort des Elements ein:", -1, 120, 50, 120, 10
|
||||
EDITTEXT IDC_SHORTCUT_LOCATION, 120, 65, 150, 15, ES_LEFT
|
||||
PUSHBUTTON "&Durchsuchen...", IDC_SHORTCUT_BROWSE, 280, 60, 70, 15, ES_LEFT
|
||||
LTEXT "Klicken Sie auf ""Weiter"", um den Installationsvorgang\nfortzusetzen.", -1, 120, 100, 180, 20
|
||||
END
|
||||
|
||||
IDD_SHORTCUT_FINISH DIALOGEX 0, 0, 340, 200
|
||||
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
|
||||
CAPTION "Select a Title for the Program"
|
||||
FONT 8, "MS Shell Dlg", 0, 0, 0x0
|
||||
BEGIN
|
||||
LTEXT "&Geben Sie den Namen für die Verknüpfung ein:", -1, 120, 15, 150, 10
|
||||
EDITTEXT IDC_SHORTCUT_NAME, 120, 35, 150, 15, ES_LEFT
|
||||
LTEXT "Klicken Sie auf ""Fertig stellen"", um die Verknüpfung zu erstellen.", -1, 120, 50, 150, 20
|
||||
END
|
||||
|
||||
STRINGTABLE
|
||||
BEGIN
|
||||
IDS_CPLSYSTEMNAME "Programme hinzufügen/entfernen"
|
||||
|
|
|
@ -44,6 +44,28 @@ BEGIN
|
|||
LTEXT "Text3",-1,10,55,120,20
|
||||
END
|
||||
|
||||
IDD_SHORTCUT_LOCATION DIALOGEX 0, 0, 340, 200
|
||||
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
|
||||
CAPTION "Create Shortcut"
|
||||
FONT 8, "MS Shell Dlg", 0, 0, 0x0
|
||||
BEGIN
|
||||
LTEXT "This wizard helps you to create shortcuts to local or\nnetwork programs, files, folders, computers, or Internet\naddresses.", -1, 120, 15, 200, 30
|
||||
LTEXT "Type the location of the item:", -1, 120, 50, 120, 10
|
||||
EDITTEXT IDC_SHORTCUT_LOCATION, 120, 65, 150, 15, ES_LEFT
|
||||
PUSHBUTTON "Browse...", IDC_SHORTCUT_BROWSE, 280, 60, 70, 15, ES_LEFT
|
||||
LTEXT "Click Next to continue.", -1, 120, 100, 90, 10
|
||||
END
|
||||
|
||||
IDD_SHORTCUT_FINISH DIALOGEX 0, 0, 340, 200
|
||||
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
|
||||
CAPTION "Select a Title for the Program"
|
||||
FONT 8, "MS Shell Dlg", 0, 0, 0x0
|
||||
BEGIN
|
||||
LTEXT "&Type a name for this shortcut:", -1, 120, 15, 150, 10
|
||||
EDITTEXT IDC_SHORTCUT_NAME, 120, 35, 150, 15, ES_LEFT
|
||||
LTEXT "Click Finish to create the shortcut.", -1, 120, 50, 150, 10
|
||||
END
|
||||
|
||||
STRINGTABLE
|
||||
BEGIN
|
||||
IDS_CPLSYSTEMNAME "Ðñïóèáöáßñåóç ðñïãñáììÜôùí"
|
||||
|
|
|
@ -44,6 +44,31 @@ BEGIN
|
|||
LTEXT "Text3",-1,10,55,120,20
|
||||
END
|
||||
|
||||
IDD_SHORTCUT_LOCATION DIALOGEX 0, 0, 340, 200
|
||||
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
|
||||
CAPTION "Create Shortcut"
|
||||
FONT 8, "MS Shell Dlg", 0, 0, 0x0
|
||||
BEGIN
|
||||
LTEXT "This wizard helps you to create shortcuts to local or\nnetwork programs, files, folders, computers, or Internet\naddresses.", -1, 120, 15, 200, 30
|
||||
LTEXT "Type the location of the item:", -1, 120, 50, 120, 10
|
||||
EDITTEXT IDC_SHORTCUT_LOCATION, 120, 65, 150, 15, ES_LEFT
|
||||
PUSHBUTTON "Browse...", IDC_SHORTCUT_BROWSE, 280, 60, 70, 15, ES_LEFT
|
||||
LTEXT "Click Next to continue.", -1, 120, 100, 90, 10
|
||||
END
|
||||
|
||||
IDD_SHORTCUT_FINISH DIALOGEX 0, 0, 340, 200
|
||||
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
|
||||
CAPTION "Select a Title for the Program"
|
||||
FONT 8, "MS Shell Dlg", 0, 0, 0x0
|
||||
BEGIN
|
||||
LTEXT "&Type a name for this shortcut:", -1, 120, 15, 150, 10
|
||||
EDITTEXT IDC_SHORTCUT_NAME, 120, 35, 150, 15, ES_LEFT
|
||||
LTEXT "Click Finish to create the shortcut.", -1, 120, 50, 150, 10
|
||||
END
|
||||
|
||||
|
||||
|
||||
|
||||
STRINGTABLE
|
||||
BEGIN
|
||||
IDS_CPLSYSTEMNAME "Add/Remove Programs"
|
||||
|
|
|
@ -50,6 +50,28 @@ BEGIN
|
|||
LTEXT "Text3",-1,10,55,120,20
|
||||
END
|
||||
|
||||
IDD_SHORTCUT_LOCATION DIALOGEX 0, 0, 340, 200
|
||||
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
|
||||
CAPTION "Create Shortcut"
|
||||
FONT 8, "MS Shell Dlg", 0, 0, 0x0
|
||||
BEGIN
|
||||
LTEXT "This wizard helps you to create shortcuts to local or\nnetwork programs, files, folders, computers, or Internet\naddresses.", -1, 120, 15, 200, 30
|
||||
LTEXT "Type the location of the item:", -1, 120, 50, 120, 10
|
||||
EDITTEXT IDC_SHORTCUT_LOCATION, 120, 65, 150, 15, ES_LEFT
|
||||
PUSHBUTTON "Browse...", IDC_SHORTCUT_BROWSE, 280, 60, 70, 15, ES_LEFT
|
||||
LTEXT "Click Next to continue.", -1, 120, 100, 90, 10
|
||||
END
|
||||
|
||||
IDD_SHORTCUT_FINISH DIALOGEX 0, 0, 340, 200
|
||||
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
|
||||
CAPTION "Select a Title for the Program"
|
||||
FONT 8, "MS Shell Dlg", 0, 0, 0x0
|
||||
BEGIN
|
||||
LTEXT "&Type a name for this shortcut:", -1, 120, 15, 150, 10
|
||||
EDITTEXT IDC_SHORTCUT_NAME, 120, 35, 150, 15, ES_LEFT
|
||||
LTEXT "Click Finish to create the shortcut.", -1, 120, 50, 150, 10
|
||||
END
|
||||
|
||||
STRINGTABLE
|
||||
BEGIN
|
||||
IDS_CPLSYSTEMNAME "Añadir/Remover Programas"
|
||||
|
|
|
@ -46,6 +46,28 @@ BEGIN
|
|||
LTEXT "Texte 3",-1,10,55,120,20
|
||||
END
|
||||
|
||||
IDD_SHORTCUT_LOCATION DIALOGEX 0, 0, 340, 200
|
||||
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
|
||||
CAPTION "Create Shortcut"
|
||||
FONT 8, "MS Shell Dlg", 0, 0, 0x0
|
||||
BEGIN
|
||||
LTEXT "This wizard helps you to create shortcuts to local or\nnetwork programs, files, folders, computers, or Internet\naddresses.", -1, 120, 15, 200, 30
|
||||
LTEXT "Type the location of the item:", -1, 120, 50, 120, 10
|
||||
EDITTEXT IDC_SHORTCUT_LOCATION, 120, 65, 150, 15, ES_LEFT
|
||||
PUSHBUTTON "Browse...", IDC_SHORTCUT_BROWSE, 280, 60, 70, 15, ES_LEFT
|
||||
LTEXT "Click Next to continue.", -1, 120, 100, 90, 10
|
||||
END
|
||||
|
||||
IDD_SHORTCUT_FINISH DIALOGEX 0, 0, 340, 200
|
||||
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
|
||||
CAPTION "Select a Title for the Program"
|
||||
FONT 8, "MS Shell Dlg", 0, 0, 0x0
|
||||
BEGIN
|
||||
LTEXT "&Type a name for this shortcut:", -1, 120, 15, 150, 10
|
||||
EDITTEXT IDC_SHORTCUT_NAME, 120, 35, 150, 15, ES_LEFT
|
||||
LTEXT "Click Finish to create the shortcut.", -1, 120, 50, 150, 10
|
||||
END
|
||||
|
||||
STRINGTABLE
|
||||
BEGIN
|
||||
IDS_CPLSYSTEMNAME "Ajout/Supression de programmes"
|
||||
|
|
|
@ -45,6 +45,28 @@ BEGIN
|
|||
LTEXT "Text3",-1,10,55,120,20
|
||||
END
|
||||
|
||||
IDD_SHORTCUT_LOCATION DIALOGEX 0, 0, 340, 200
|
||||
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
|
||||
CAPTION "Create Shortcut"
|
||||
FONT 8, "MS Shell Dlg", 0, 0, 0x0
|
||||
BEGIN
|
||||
LTEXT "This wizard helps you to create shortcuts to local or\nnetwork programs, files, folders, computers, or Internet\naddresses.", -1, 120, 15, 200, 30
|
||||
LTEXT "Type the location of the item:", -1, 120, 50, 120, 10
|
||||
EDITTEXT IDC_SHORTCUT_LOCATION, 120, 65, 150, 15, ES_LEFT
|
||||
PUSHBUTTON "Browse...", IDC_SHORTCUT_BROWSE, 280, 60, 70, 15, ES_LEFT
|
||||
LTEXT "Click Next to continue.", -1, 120, 100, 90, 10
|
||||
END
|
||||
|
||||
IDD_SHORTCUT_FINISH DIALOGEX 0, 0, 340, 200
|
||||
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
|
||||
CAPTION "Select a Title for the Program"
|
||||
FONT 8, "MS Shell Dlg", 0, 0, 0x0
|
||||
BEGIN
|
||||
LTEXT "&Type a name for this shortcut:", -1, 120, 15, 150, 10
|
||||
EDITTEXT IDC_SHORTCUT_NAME, 120, 35, 150, 15, ES_LEFT
|
||||
LTEXT "Click Finish to create the shortcut.", -1, 120, 50, 150, 10
|
||||
END
|
||||
|
||||
STRINGTABLE
|
||||
BEGIN
|
||||
IDS_CPLSYSTEMNAME "Szoftverek hozzáadása és eltávolítása"
|
||||
|
|
|
@ -44,6 +44,28 @@ BEGIN
|
|||
LTEXT "Text3",-1,10,55,120,20
|
||||
END
|
||||
|
||||
IDD_SHORTCUT_LOCATION DIALOGEX 0, 0, 340, 200
|
||||
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
|
||||
CAPTION "Create Shortcut"
|
||||
FONT 8, "MS Shell Dlg", 0, 0, 0x0
|
||||
BEGIN
|
||||
LTEXT "This wizard helps you to create shortcuts to local or\nnetwork programs, files, folders, computers, or Internet\naddresses.", -1, 120, 15, 200, 30
|
||||
LTEXT "Type the location of the item:", -1, 120, 50, 120, 10
|
||||
EDITTEXT IDC_SHORTCUT_LOCATION, 120, 65, 150, 15, ES_LEFT
|
||||
PUSHBUTTON "Browse...", IDC_SHORTCUT_BROWSE, 280, 60, 70, 15, ES_LEFT
|
||||
LTEXT "Click Next to continue.", -1, 120, 100, 90, 10
|
||||
END
|
||||
|
||||
IDD_SHORTCUT_FINISH DIALOGEX 0, 0, 340, 200
|
||||
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
|
||||
CAPTION "Select a Title for the Program"
|
||||
FONT 8, "MS Shell Dlg", 0, 0, 0x0
|
||||
BEGIN
|
||||
LTEXT "&Type a name for this shortcut:", -1, 120, 15, 150, 10
|
||||
EDITTEXT IDC_SHORTCUT_NAME, 120, 35, 150, 15, ES_LEFT
|
||||
LTEXT "Click Finish to create the shortcut.", -1, 120, 50, 150, 10
|
||||
END
|
||||
|
||||
STRINGTABLE
|
||||
BEGIN
|
||||
IDS_CPLSYSTEMNAME "Tambah/Hapus Program"
|
||||
|
|
|
@ -44,6 +44,28 @@ BEGIN
|
|||
LTEXT "Testo3",-1,10,55,120,20
|
||||
END
|
||||
|
||||
IDD_SHORTCUT_LOCATION DIALOGEX 0, 0, 340, 200
|
||||
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
|
||||
CAPTION "Create Shortcut"
|
||||
FONT 8, "MS Shell Dlg", 0, 0, 0x0
|
||||
BEGIN
|
||||
LTEXT "This wizard helps you to create shortcuts to local or\nnetwork programs, files, folders, computers, or Internet\naddresses.", -1, 120, 15, 200, 30
|
||||
LTEXT "Type the location of the item:", -1, 120, 50, 120, 10
|
||||
EDITTEXT IDC_SHORTCUT_LOCATION, 120, 65, 150, 15, ES_LEFT
|
||||
PUSHBUTTON "Browse...", IDC_SHORTCUT_BROWSE, 280, 60, 70, 15, ES_LEFT
|
||||
LTEXT "Click Next to continue.", -1, 120, 100, 90, 10
|
||||
END
|
||||
|
||||
IDD_SHORTCUT_FINISH DIALOGEX 0, 0, 340, 200
|
||||
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
|
||||
CAPTION "Select a Title for the Program"
|
||||
FONT 8, "MS Shell Dlg", 0, 0, 0x0
|
||||
BEGIN
|
||||
LTEXT "&Type a name for this shortcut:", -1, 120, 15, 150, 10
|
||||
EDITTEXT IDC_SHORTCUT_NAME, 120, 35, 150, 15, ES_LEFT
|
||||
LTEXT "Click Finish to create the shortcut.", -1, 120, 50, 150, 10
|
||||
END
|
||||
|
||||
STRINGTABLE
|
||||
BEGIN
|
||||
IDS_CPLSYSTEMNAME "Aggiungi/Rimuovi programmi"
|
||||
|
|
|
@ -44,6 +44,28 @@ BEGIN
|
|||
LTEXT "Text3",-1,10,55,120,20
|
||||
END
|
||||
|
||||
IDD_SHORTCUT_LOCATION DIALOGEX 0, 0, 340, 200
|
||||
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
|
||||
CAPTION "Create Shortcut"
|
||||
FONT 8, "MS Shell Dlg", 0, 0, 0x0
|
||||
BEGIN
|
||||
LTEXT "This wizard helps you to create shortcuts to local or\nnetwork programs, files, folders, computers, or Internet\naddresses.", -1, 120, 15, 200, 30
|
||||
LTEXT "Type the location of the item:", -1, 120, 50, 120, 10
|
||||
EDITTEXT IDC_SHORTCUT_LOCATION, 120, 65, 150, 15, ES_LEFT
|
||||
PUSHBUTTON "Browse...", IDC_SHORTCUT_BROWSE, 280, 60, 70, 15, ES_LEFT
|
||||
LTEXT "Click Next to continue.", -1, 120, 100, 90, 10
|
||||
END
|
||||
|
||||
IDD_SHORTCUT_FINISH DIALOGEX 0, 0, 340, 200
|
||||
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
|
||||
CAPTION "Select a Title for the Program"
|
||||
FONT 8, "MS Shell Dlg", 0, 0, 0x0
|
||||
BEGIN
|
||||
LTEXT "&Type a name for this shortcut:", -1, 120, 15, 150, 10
|
||||
EDITTEXT IDC_SHORTCUT_NAME, 120, 35, 150, 15, ES_LEFT
|
||||
LTEXT "Click Finish to create the shortcut.", -1, 120, 50, 150, 10
|
||||
END
|
||||
|
||||
STRINGTABLE
|
||||
BEGIN
|
||||
IDS_CPLSYSTEMNAME "プログラムの追加と削除"
|
||||
|
|
|
@ -44,6 +44,28 @@ BEGIN
|
|||
LTEXT "Text3",-1,10,55,120,20
|
||||
END
|
||||
|
||||
IDD_SHORTCUT_LOCATION DIALOGEX 0, 0, 340, 200
|
||||
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
|
||||
CAPTION "Create Shortcut"
|
||||
FONT 8, "MS Shell Dlg", 0, 0, 0x0
|
||||
BEGIN
|
||||
LTEXT "This wizard helps you to create shortcuts to local or\nnetwork programs, files, folders, computers, or Internet\naddresses.", -1, 120, 15, 200, 30
|
||||
LTEXT "Type the location of the item:", -1, 120, 50, 120, 10
|
||||
EDITTEXT IDC_SHORTCUT_LOCATION, 120, 65, 150, 15, ES_LEFT
|
||||
PUSHBUTTON "Browse...", IDC_SHORTCUT_BROWSE, 280, 60, 70, 15, ES_LEFT
|
||||
LTEXT "Click Next to continue.", -1, 120, 100, 90, 10
|
||||
END
|
||||
|
||||
IDD_SHORTCUT_FINISH DIALOGEX 0, 0, 340, 200
|
||||
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
|
||||
CAPTION "Select a Title for the Program"
|
||||
FONT 8, "MS Shell Dlg", 0, 0, 0x0
|
||||
BEGIN
|
||||
LTEXT "&Type a name for this shortcut:", -1, 120, 15, 150, 10
|
||||
EDITTEXT IDC_SHORTCUT_NAME, 120, 35, 150, 15, ES_LEFT
|
||||
LTEXT "Click Finish to create the shortcut.", -1, 120, 50, 150, 10
|
||||
END
|
||||
|
||||
STRINGTABLE
|
||||
BEGIN
|
||||
IDS_CPLSYSTEMNAME "Software"
|
||||
|
|
|
@ -46,6 +46,28 @@ BEGIN
|
|||
LTEXT "Tekst3",-1,10,55,120,20
|
||||
END
|
||||
|
||||
IDD_SHORTCUT_LOCATION DIALOGEX 0, 0, 340, 200
|
||||
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
|
||||
CAPTION "Create Shortcut"
|
||||
FONT 8, "MS Shell Dlg", 0, 0, 0x0
|
||||
BEGIN
|
||||
LTEXT "This wizard helps you to create shortcuts to local or\nnetwork programs, files, folders, computers, or Internet\naddresses.", -1, 120, 15, 200, 30
|
||||
LTEXT "Type the location of the item:", -1, 120, 50, 120, 10
|
||||
EDITTEXT IDC_SHORTCUT_LOCATION, 120, 65, 150, 15, ES_LEFT
|
||||
PUSHBUTTON "Browse...", IDC_SHORTCUT_BROWSE, 280, 60, 70, 15, ES_LEFT
|
||||
LTEXT "Click Next to continue.", -1, 120, 100, 90, 10
|
||||
END
|
||||
|
||||
IDD_SHORTCUT_FINISH DIALOGEX 0, 0, 340, 200
|
||||
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
|
||||
CAPTION "Select a Title for the Program"
|
||||
FONT 8, "MS Shell Dlg", 0, 0, 0x0
|
||||
BEGIN
|
||||
LTEXT "&Type a name for this shortcut:", -1, 120, 15, 150, 10
|
||||
EDITTEXT IDC_SHORTCUT_NAME, 120, 35, 150, 15, ES_LEFT
|
||||
LTEXT "Click Finish to create the shortcut.", -1, 120, 50, 150, 10
|
||||
END
|
||||
|
||||
STRINGTABLE
|
||||
BEGIN
|
||||
IDS_CPLSYSTEMNAME "Dodaj/Usuñ programy"
|
||||
|
|
|
@ -44,6 +44,28 @@ BEGIN
|
|||
LTEXT "Text3",-1,10,55,120,20
|
||||
END
|
||||
|
||||
IDD_SHORTCUT_LOCATION DIALOGEX 0, 0, 340, 200
|
||||
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
|
||||
CAPTION "Create Shortcut"
|
||||
FONT 8, "MS Shell Dlg", 0, 0, 0x0
|
||||
BEGIN
|
||||
LTEXT "This wizard helps you to create shortcuts to local or\nnetwork programs, files, folders, computers, or Internet\naddresses.", -1, 120, 15, 200, 30
|
||||
LTEXT "Type the location of the item:", -1, 120, 50, 120, 10
|
||||
EDITTEXT IDC_SHORTCUT_LOCATION, 120, 65, 150, 15, ES_LEFT
|
||||
PUSHBUTTON "Browse...", IDC_SHORTCUT_BROWSE, 280, 60, 70, 15, ES_LEFT
|
||||
LTEXT "Click Next to continue.", -1, 120, 100, 90, 10
|
||||
END
|
||||
|
||||
IDD_SHORTCUT_FINISH DIALOGEX 0, 0, 340, 200
|
||||
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
|
||||
CAPTION "Select a Title for the Program"
|
||||
FONT 8, "MS Shell Dlg", 0, 0, 0x0
|
||||
BEGIN
|
||||
LTEXT "&Type a name for this shortcut:", -1, 120, 15, 150, 10
|
||||
EDITTEXT IDC_SHORTCUT_NAME, 120, 35, 150, 15, ES_LEFT
|
||||
LTEXT "Click Finish to create the shortcut.", -1, 120, 50, 150, 10
|
||||
END
|
||||
|
||||
STRINGTABLE
|
||||
BEGIN
|
||||
IDS_CPLSYSTEMNAME "Установка и удаление программ"
|
||||
|
|
|
@ -44,6 +44,28 @@ BEGIN
|
|||
LTEXT "Text3",-1,10,55,120,20
|
||||
END
|
||||
|
||||
IDD_SHORTCUT_LOCATION DIALOGEX 0, 0, 340, 200
|
||||
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
|
||||
CAPTION "Create Shortcut"
|
||||
FONT 8, "MS Shell Dlg", 0, 0, 0x0
|
||||
BEGIN
|
||||
LTEXT "This wizard helps you to create shortcuts to local or\nnetwork programs, files, folders, computers, or Internet\naddresses.", -1, 120, 15, 200, 30
|
||||
LTEXT "Type the location of the item:", -1, 120, 50, 120, 10
|
||||
EDITTEXT IDC_SHORTCUT_LOCATION, 120, 65, 150, 15, ES_LEFT
|
||||
PUSHBUTTON "Browse...", IDC_SHORTCUT_BROWSE, 280, 60, 70, 15, ES_LEFT
|
||||
LTEXT "Click Next to continue.", -1, 120, 100, 90, 10
|
||||
END
|
||||
|
||||
IDD_SHORTCUT_FINISH DIALOGEX 0, 0, 340, 200
|
||||
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
|
||||
CAPTION "Select a Title for the Program"
|
||||
FONT 8, "MS Shell Dlg", 0, 0, 0x0
|
||||
BEGIN
|
||||
LTEXT "&Type a name for this shortcut:", -1, 120, 15, 150, 10
|
||||
EDITTEXT IDC_SHORTCUT_NAME, 120, 35, 150, 15, ES_LEFT
|
||||
LTEXT "Click Finish to create the shortcut.", -1, 120, 50, 150, 10
|
||||
END
|
||||
|
||||
STRINGTABLE
|
||||
BEGIN
|
||||
IDS_CPLSYSTEMNAME "à¾ÔèÁ/¶Í´¶Í¹ â»Ãá¡ÃÁ"
|
||||
|
|
|
@ -52,6 +52,28 @@ BEGIN
|
|||
LTEXT "Text3",-1,10,55,120,20
|
||||
END
|
||||
|
||||
IDD_SHORTCUT_LOCATION DIALOGEX 0, 0, 340, 200
|
||||
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
|
||||
CAPTION "Create Shortcut"
|
||||
FONT 8, "MS Shell Dlg", 0, 0, 0x0
|
||||
BEGIN
|
||||
LTEXT "This wizard helps you to create shortcuts to local or\nnetwork programs, files, folders, computers, or Internet\naddresses.", -1, 120, 15, 200, 30
|
||||
LTEXT "Type the location of the item:", -1, 120, 50, 120, 10
|
||||
EDITTEXT IDC_SHORTCUT_LOCATION, 120, 65, 150, 15, ES_LEFT
|
||||
PUSHBUTTON "Browse...", IDC_SHORTCUT_BROWSE, 280, 60, 70, 15, ES_LEFT
|
||||
LTEXT "Click Next to continue.", -1, 120, 100, 90, 10
|
||||
END
|
||||
|
||||
IDD_SHORTCUT_FINISH DIALOGEX 0, 0, 340, 200
|
||||
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
|
||||
CAPTION "Select a Title for the Program"
|
||||
FONT 8, "MS Shell Dlg", 0, 0, 0x0
|
||||
BEGIN
|
||||
LTEXT "&Type a name for this shortcut:", -1, 120, 15, 150, 10
|
||||
EDITTEXT IDC_SHORTCUT_NAME, 120, 35, 150, 15, ES_LEFT
|
||||
LTEXT "Click Finish to create the shortcut.", -1, 120, 50, 150, 10
|
||||
END
|
||||
|
||||
STRINGTABLE
|
||||
BEGIN
|
||||
IDS_CPLSYSTEMNAME "Óñòàíîâêà é âèäàëåííÿ ïðîãðàì"
|
||||
|
|
|
@ -14,18 +14,25 @@
|
|||
/* ids */
|
||||
|
||||
#define IDI_CPLSYSTEM 1500
|
||||
#define IDB_WATERMARK 1501
|
||||
|
||||
#define IDD_PROPPAGEINSTALL 100
|
||||
#define IDD_PROPPAGEROSSETUP 101
|
||||
#define IDD_PROPPAGEINSTALL 100
|
||||
#define IDD_PROPPAGEROSSETUP 101
|
||||
#define IDD_SHORTCUT_LOCATION 102
|
||||
#define IDD_SHORTCUT_FINISH 103
|
||||
|
||||
#define IDS_CPLSYSTEMNAME 1001
|
||||
#define IDS_CPLSYSTEMDESCRIPTION 2001
|
||||
|
||||
/* controls */
|
||||
#define IDC_INSTALL 101
|
||||
#define IDC_SOFTWARELIST 102
|
||||
#define IDC_ADDREMOVE 103
|
||||
#define IDC_SHOWUPDATES 104
|
||||
#define IDC_INSTALL 201
|
||||
#define IDC_SOFTWARELIST 202
|
||||
#define IDC_ADDREMOVE 203
|
||||
#define IDC_SHOWUPDATES 204
|
||||
#define IDC_SHORTCUT_LOCATION 205
|
||||
#define IDC_SHORTCUT_BROWSE 206
|
||||
#define IDC_SHORTCUT_NAME 207
|
||||
|
||||
|
||||
#endif /* __CPL_RESOURCE_H */
|
||||
|
||||
|
|
BIN
reactos/dll/cpl/appwiz/resources/watermark.bmp
Normal file
BIN
reactos/dll/cpl/appwiz/resources/watermark.bmp
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.1 KiB |
Loading…
Add table
Add a link
Reference in a new issue