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
|
/*
* Copyright (c) 2008, 2015, Oracle and/or its affiliates. All rights reserved.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; version 2 of the
* License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA
*/
#include "mforms/mforms.h"
using namespace mforms;
using namespace base;
// Implementation of _app_impl for WB is done directly in main_window.cpp in Linux
// and WBMainWindow.mm in Mac
// In Windows, it's done in wf_app.h/wf_app.cpp wrapper
static App *singleton= 0;
App::App(DockingPointDelegate *delegate, bool delete_on_destroy)
: DockingPoint(delegate, delete_on_destroy)
{
}
//--------------------------------------------------------------------------------------------------
void App::instantiate(DockingPointDelegate *delegate, bool delete_on_destroy)
{
singleton = new App(delegate, delete_on_destroy);
singleton->_app_impl= &ControlFactory::get_instance()->_app_impl;
}
//--------------------------------------------------------------------------------------------------
App *App::get()
{
return singleton;
}
//--------------------------------------------------------------------------------------------------
std::string App::get_resource_path(const std::string &file)
{
std::string ret;
if (_app_impl->get_resource_path)
ret = _app_impl->get_resource_path(this, file);
return ret;
}
//--------------------------------------------------------------------------------------------------
std::string App::get_executable_path(const std::string &file)
{
std::string ret;
if (_app_impl->get_executable_path)
ret = _app_impl->get_executable_path(this, file);
else
ret = get_resource_path(file);
return ret;
}
//--------------------------------------------------------------------------------------------------
void App::set_status_text(const std::string &text)
{
if (_app_impl->set_status_text)
_app_impl->set_status_text(this, text);
}
//--------------------------------------------------------------------------------------------------
/**
* Returns the bounds of the main application window.
*/
base::Rect App::get_application_bounds()
{
return _app_impl->get_application_bounds(this);
}
//--------------------------------------------------------------------------------------------------
int App::enter_event_loop(float timeout)
{
return _app_impl->enter_event_loop(this, timeout);
}
//--------------------------------------------------------------------------------------------------
void App::exit_event_loop(int retcode)
{
_app_impl->exit_event_loop(this, retcode);
}
//--------------------------------------------------------------------------------------------------
Color App::get_system_color(SystemColor type)
{
return _app_impl->get_system_color(type);
}
//--------------------------------------------------------------------------------------------------
float App::backing_scale_factor()
{
if (_app_impl->backing_scale_factor != NULL)
return _app_impl->backing_scale_factor(this);
return 1.0;
}
//--------------------------------------------------------------------------------------------------
|