File: wxviewer.cc

package info (click to toggle)
libkml 1.3.0-13
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 14,660 kB
  • sloc: cpp: 48,088; python: 2,008; xml: 1,806; ansic: 1,766; php: 223; java: 195; ruby: 109; perl: 108; sh: 42; makefile: 17
file content (257 lines) | stat: -rw-r--r-- 8,287 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
// Copyright 2008, Google Inc. All rights reserved.
//
// Redistribution and use in source and binary forms, with or without 
// modification, are permitted provided that the following conditions are met:
//
//  1. Redistributions of source code must retain the above copyright notice, 
//     this list of conditions and the following disclaimer.
//  2. Redistributions in binary form must reproduce the above copyright notice,
//     this list of conditions and the following disclaimer in the documentation
//     and/or other materials provided with the distribution.
//  3. Neither the name of Google Inc. nor the names of its contributors may be
//     used to endorse or promote products derived from this software without
//     specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
// WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 
// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
// EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
// OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
// WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR 
// OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF 
// ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

#include "wxviewer.h"
#include "wx/filedlg.h"
#include "wx/ffile.h"
#include "wx/image.h"
#include "wx/imaglist.h"
#include "wx/log.h"
#include "icon_file.xpm"
#include "icon_folder_opened.xpm"
#include "icon_folder_closed.xpm"

using kmldom::ContainerPtr;
using kmldom::ElementPtr;
using kmldom::FeaturePtr;
using kmldom::KmlPtr;

// Event table for MainFrame menus.
BEGIN_EVENT_TABLE(MainFrame, wxFrame)
  EVT_MENU(wxID_ABOUT, MainFrame::OnAbout)
  EVT_MENU(wxID_EXIT, MainFrame::OnQuit)
  EVT_MENU(DIALOGS_FILE_OPEN, MainFrame::OnFileOpen)
END_EVENT_TABLE()

// Event table for ListView mouse actions.
BEGIN_EVENT_TABLE(ListView, wxTreeCtrl)
  // TODO.
END_EVENT_TABLE()

// Implements WXViewer& GetApp().
DECLARE_APP(WXViewer)

// Give wxWidgets the means to create a WXViewer object.
IMPLEMENT_APP(WXViewer)

// Helper to find the root element of the parsed KML.
static const FeaturePtr GetRootFeature(const ElementPtr& root) {
  const KmlPtr kml = kmldom::AsKml(root);
  if (kml && kml->has_feature()) {
    return kml->get_feature();
  }
  return kmldom::AsFeature(root);
}

// Helper to convert wxString to std::string.
static std::string wx2std(const wxString& wxstr, wxMBConv* conv) {
  if (wxstr.empty()) {
    return "";
  }
  if (!conv) {
    conv = wxConvCurrent;  // TODO: more research on this.
  }
  return std::string(wxstr.mb_str(*conv));
}

// Helper to convert std::string to wxString.
static wxString std2wx(const std::string& stdstr, wxMBConv* conv) {
  if (stdstr.empty()) {
    return wxEmptyString;
  }
  if (!conv) {
    conv = wxConvCurrent;  // TODO: more research on this.
  }
  return wxString(stdstr.c_str(), *conv);
}

bool WXViewer::OnInit() {
  // Create the main application window.
  MainFrame* frame = new MainFrame(wxT("WXViewer"), wxID_ANY,
                                   wxDefaultPosition, wxSize(400, 400),
                                   wxDEFAULT_FRAME_STYLE);
  frame->Show(true);
  return true;
}

ListView::ListView(wxWindow* parent, const wxWindowID id, const wxPoint& pos,
                   const wxSize& size, long style)
    : wxTreeCtrl(parent, id, pos, size, style), kml_root_(NULL) {
  CreateImageList();
}

void ListView::CreateImageList() {
  const int size = 32;
  // The icon list should match the ICON_XXX enum defined in the ListView
  // class.
  wxImageList* images = new wxImageList(size, size, true);
  wxBusyCursor wait;
  wxIcon icons[3];
  icons[0] = wxIcon(icon_file_xpm);
  icons[1] = wxIcon(icon_folder_opened_xpm);
  icons[2] = wxIcon(icon_folder_closed_xpm);
  for (size_t i = 0; i < WXSIZEOF(icons); ++i) {
    images->Add(icons[i]);
  }
  AssignImageList(images);
}

void ListView::SetKmlData(const wxString& str) {
  std::string errors;
  kml_root_ = kmldom::Parse(wx2std(str, NULL), &errors);
  if (!kml_root_) {
    wxLogMessage(wxT("SetKmlData Parse failed: %s"),
                 std2wx(errors, NULL).c_str());
    return;
  }
  DeleteAllItems();
  Populate();
}

void ListView::Populate() {
  if (!kml_root_) {
    return;
  }

  const FeaturePtr root_feature = GetRootFeature(kml_root_);
  wxString name = std2wx(root_feature->get_name(), NULL);

  int icon = ICON_FILE;
  const ContainerPtr container = kmldom::AsContainer(root_feature);
  if (container) {
    icon = container->get_open() ? ICON_FOLDER_OPENED : ICON_FOLDER_CLOSED;
  }

  wxTreeItemId root_id = AddRoot(name, icon, wxTreeItemIcon_Expanded, NULL);
  SetItemImage(root_id, icon, wxTreeItemIcon_Expanded);

  if (container) {
    AppendContainer(container, root_id);
    if (container->get_open()) {
      Expand(root_id);
    }
  }
}

void ListView::AppendContainer(const ContainerPtr& container,
                               wxTreeItemId parent_id) {
  for (size_t i = 0; i < container->get_feature_array_size(); ++i) {
    AppendFeature(container->get_feature_array_at(i), parent_id);
  }
}

void ListView::AppendFeature(const FeaturePtr& feature,
                             wxTreeItemId parent_id) {
  wxString name = std2wx(feature->get_name(), NULL);
  wxTreeItemId appended_id;
  const ContainerPtr container = kmldom::AsContainer(feature);
  if (container) {
    int icon = container->get_open() ? ICON_FOLDER_OPENED : ICON_FOLDER_CLOSED;
    appended_id = AppendItem(parent_id, name, icon, icon, NULL);
    AppendContainer(container, appended_id);
    if (container->get_open()) {
      Expand(appended_id);
    }
  } else {
    AppendItem(parent_id, name, ICON_FILE, ICON_FILE, NULL);
  }
}

MainFrame::MainFrame(const wxString& title, wxWindowID id, const wxPoint& pos,
                     const wxSize& size, long style)
    : wxFrame(NULL, id, title, pos, size, style), listview_(NULL) {

  // Create a menu bar.
  wxMenu* FileMenu = new wxMenu;

  // The "About" item is in the help menu.
  wxMenu* HelpMenu = new wxMenu;
  HelpMenu->Append(wxID_ABOUT, wxT("About"), wxT("Show about dialog"));
  FileMenu->Append(wxID_EXIT, wxT("Quit WXViewer"), wxT("Quit this program"));
  FileMenu->Append(DIALOGS_FILE_OPEN, wxT("Open File..."), wxT("Open a file"));

  // Now append the created menus to the menu bar.
  wxMenuBar* MenuBar = new wxMenuBar();
  MenuBar->Append(FileMenu, wxT("File"));
  MenuBar->Append(HelpMenu, wxT("Help"));

  // And attach the menu bar to the frame.
  SetMenuBar(MenuBar);

  // Create a status bar.
  CreateStatusBar(2);
  SetStatusText(wxT("42"));

  // Create a panel to hold our controls.
  panel_ = new wxPanel(this);

  // Bring up the listview and parent it to the panel.
  listview_ = new ListView(panel_, WINDOW_LISTVIEW, wxDefaultPosition,
                           wxDefaultSize, wxTR_HAS_BUTTONS);

  // Size the listview to the main frame.
  Resize();
}

void MainFrame::Resize() {
  wxSize size = GetClientSize();
  listview_->SetSize(0, 0, size.x, size.y);
}

MainFrame::~MainFrame() {
  delete listview_;
  delete panel_;
}

void MainFrame::OnAbout(wxCommandEvent& event) {
  wxString msg;
  msg.Printf(wxT("A libkml demo application.\nCreated with %s"),
                 wxVERSION_STRING);
  wxMessageBox(msg, wxT("About WXViewer"),
               wxOK | wxICON_INFORMATION, this);
}

void MainFrame::OnQuit(wxCommandEvent& event) {
  Close();
}

void MainFrame::OnFileOpen(wxCommandEvent& WXUNUSED(event)) {
  wxFileDialog dialog(this, _T("Select a file to open"), wxEmptyString,
                      wxEmptyString, _T("KML files (*.kml;*.kmz)|*.kml;*.kmz"));
  dialog.CenterOnParent();
  dialog.SetDirectory(wxGetHomeDir());
  wxString file_data;
  if (dialog.ShowModal() == wxID_OK) {
    wxFFile file(dialog.GetPath(), _T("r"));  // TODO KMZ
    if (!file.IsOpened()) {
      wxLogMessage(wxT("Could not open %s"), dialog.GetPath().c_str());
      return;
    }
    file.ReadAll(&file_data);
    file.Close();
  }
  listview_->SetKmlData(file_data);
}