Starshatter_Open
Open source Starshatter engine
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
CmdTitleDlg.cpp
Go to the documentation of this file.
1 /* Project Starshatter 4.5
2  Destroyer Studios LLC
3  Copyright © 1997-2004. All Rights Reserved.
4 
5  SUBSYSTEM: Stars.exe
6  FILE: CmdTitleDlg.cpp
7  AUTHOR: John DiCamillo
8 
9 
10  OVERVIEW
11  ========
12  Operational Command Dialog (Intel/Newsfeed Tab)
13 */
14 
15 #include "MemDebug.h"
16 #include "CmdTitleDlg.h"
17 #include "CmpnScreen.h"
18 #include "Starshatter.h"
19 #include "Campaign.h"
20 #include "Combatant.h"
21 #include "CombatEvent.h"
22 #include "CombatGroup.h"
23 #include "CombatUnit.h"
24 #include "ShipDesign.h"
25 
26 #include "Game.h"
27 #include "DataLoader.h"
28 #include "Button.h"
29 #include "ComboBox.h"
30 #include "ListBox.h"
31 #include "Slider.h"
32 #include "Video.h"
33 #include "Keyboard.h"
34 #include "Mouse.h"
35 #include "ParseUtil.h"
36 #include "FormatUtil.h"
37 
38 // +--------------------------------------------------------------------+
39 // DECLARE MAPPING FUNCTIONS:
40 
41 // +--------------------------------------------------------------------+
42 
44 : FormWindow(s, 0, 0, s->Width(), s->Height()), manager(mgr),
45 stars(0), campaign(0), showTime(0)
46 {
49 
50  Init(def);
51 }
52 
54 {
55 }
56 
57 // +--------------------------------------------------------------------+
58 
59 void
61 {
62  img_title = (ImageBox*) FindControl(200);
63 }
64 
65 // +--------------------------------------------------------------------+
66 
67 void
69 {
71 }
72 
73 // +--------------------------------------------------------------------+
74 
75 void
77 {
78 }