Update ooo320-m1
[ooovba.git] / desktop / win32 / source / setup / setup_main.hxx
blob5366dcf825447d5cd4d4e9d2f937e841ca969710
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: setup_main.hxx,v $
10 * $Revision: 1.9 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
32 #ifndef SETUP_MAIN_HXX
33 #define SETUP_MAIN_HXX
35 class SetupApp
37 DWORD m_nOSVersion;
38 DWORD m_nMinorVersion;
39 boolean m_bIsWin9x : 1;
40 boolean m_bNeedReboot : 1;
41 boolean m_bAdministrative : 1;
43 public:
44 UINT m_uiRet;
46 SetupApp();
47 virtual ~SetupApp();
49 virtual boolean Initialize( HINSTANCE hInst ) = 0;
50 virtual boolean AlreadyRunning() const = 0;
51 virtual boolean ReadProfile() = 0;
52 virtual boolean GetPatches() = 0;
53 virtual boolean ChooseLanguage( long& rLanguage ) = 0;
54 virtual boolean CheckVersion() = 0;
55 virtual boolean CheckForUpgrade() = 0;
56 virtual boolean Install( long nLanguage ) = 0;
58 virtual UINT GetError() const = 0;
59 virtual void DisplayError( UINT nErr ) const = 0;
61 void SetError( UINT nErr ) { m_uiRet = nErr; }
62 boolean IsWin9x() const { return m_bIsWin9x; }
63 DWORD GetOSVersion() const { return m_nOSVersion; }
64 DWORD GetMinorVersion() const { return m_nMinorVersion; }
66 boolean IsAdminInstall() { return m_bAdministrative; }
67 void SetAdminInstall( boolean bValue ) { m_bAdministrative = bValue; }
69 void SetRebootNeeded( boolean bNeedReboot ) { m_bNeedReboot = bNeedReboot; }
70 boolean NeedReboot() const { return m_bNeedReboot; }
73 SetupApp* Create_SetupAppA();
74 SetupApp* Create_SetupAppW();
76 #endif