1999-10-12 18:31:05 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
2003-07-31 19:54:39 +00:00
|
|
|
* The contents of this file are subject to the Mozilla Public
|
1999-11-02 05:38:33 +00:00
|
|
|
* License Version 1.1 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
2003-07-31 19:54:39 +00:00
|
|
|
* the License at http://www.mozilla.org/MPL/
|
1999-10-12 18:31:05 +00:00
|
|
|
*
|
1999-11-02 05:38:33 +00:00
|
|
|
* Software distributed under the License is distributed on an "AS
|
|
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
|
|
* implied. See the License for the specific language governing
|
|
|
|
* rights and limitations under the License.
|
1999-10-12 18:31:05 +00:00
|
|
|
*
|
1999-11-02 05:38:33 +00:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Netscape
|
1999-10-12 18:31:05 +00:00
|
|
|
* Communications Corporation. Portions created by Netscape are
|
1999-11-02 05:38:33 +00:00
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
* Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
1999-10-12 18:31:05 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __AFXWIN_H__
|
|
|
|
#error include 'stdafx.h' before including this file for PCH
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "resource.h" // main symbols
|
|
|
|
#include "WizardTypes.h"
|
|
|
|
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// CInterpret:
|
|
|
|
// See Interpret.cpp for the implementation of this class
|
|
|
|
//
|
|
|
|
class CInterpret
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CInterpret();
|
|
|
|
~CInterpret();
|
1999-10-25 03:26:48 +00:00
|
|
|
BOOL NewConfig(WIDGET *curWidget, CString globalsName, CString DialogTitle);
|
1999-10-19 18:58:38 +00:00
|
|
|
BOOL BrowseFile(WIDGET *curWidget);
|
1999-11-04 20:19:27 +00:00
|
|
|
CString BrowseDir(WIDGET *curWidget);
|
1999-11-05 00:36:17 +00:00
|
|
|
void GenerateList(CString action, WIDGET* curWidget, CString ext);
|
2002-05-06 20:34:26 +00:00
|
|
|
void GenerateLocaleNameList(WIDGET *curWidget, CString parentDirPath);
|
1999-10-19 18:58:38 +00:00
|
|
|
BOOL Progress(); // Not actually used right now
|
2001-11-14 00:23:13 +00:00
|
|
|
BOOL ShowSection(WIDGET *curWidget);
|
1999-10-12 18:31:05 +00:00
|
|
|
BOOL IterateListBox(char *parms);
|
1999-10-19 01:30:18 +00:00
|
|
|
CString replaceVars(CString str, char *listval);
|
1999-10-12 18:31:05 +00:00
|
|
|
CString replaceVars(char *str, char *listval);
|
1999-11-04 20:19:27 +00:00
|
|
|
BOOL CallDLL(char *dll, char *proc, char *parms, WIDGET *curWidget);
|
1999-10-19 01:30:18 +00:00
|
|
|
BOOL interpret(char *cmds, WIDGET *curWidget);
|
1999-10-12 18:31:05 +00:00
|
|
|
BOOL interpret(CString cmds, WIDGET *curWidget);
|
2000-03-28 23:19:12 +00:00
|
|
|
BOOL CInterpret::GetRegistryKey( HKEY key, const char *subkey, char *retdata );
|
1999-10-26 21:10:39 +00:00
|
|
|
BOOL CInterpret::OpenBrowser(const char *url);
|
2000-03-28 23:19:12 +00:00
|
|
|
BOOL CInterpret::OpenViewer(const char *url);
|
2002-06-18 20:36:09 +00:00
|
|
|
CString CInterpret::GetTrimFile(CString filePath, int URLDisplayLength);
|
2000-01-18 22:39:01 +00:00
|
|
|
|
1999-10-12 18:31:05 +00:00
|
|
|
// Overrides
|
|
|
|
// ClassWizard generated virtual function overrides
|
|
|
|
//{{AFX_VIRTUAL(CWizardMachineApp)
|
|
|
|
public:
|
|
|
|
virtual BOOL InitInstance();
|
|
|
|
//}}AFX_VIRTUAL
|
|
|
|
|
|
|
|
// Implementation
|
1999-10-13 00:01:10 +00:00
|
|
|
DLLINFO m_DLLs;
|
1999-10-12 18:31:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|