//---------------------------------------------------------------------------
/*
CppWMenu, demonstration of Wt::WMenu
Copyright (C) 2011 Richel Bilderbeek
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, either version 3 of the License, or
(at your option) any later version.
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, see <http://www.gnu.org/licenses/>.
*/
//---------------------------------------------------------------------------
//From http://www.richelbilderbeek.nl/CppWMenu.htm
//---------------------------------------------------------------------------
#include <iostream>
//---------------------------------------------------------------------------
#include <boost/program_options.hpp>
//---------------------------------------------------------------------------
#include <Wt/WApplication>
#include <Wt/WEnvironment>
#include <Wt/WText>
//---------------------------------------------------------------------------
#include "wtmenudialog.h"
//---------------------------------------------------------------------------
struct WtApplication : public Wt::WApplication
{
WtApplication(const Wt::WEnvironment& env);
};
//---------------------------------------------------------------------------
WtApplication::WtApplication(
const Wt::WEnvironment& env)
: WApplication(env)
{
setTitle("CppWMenu");
this->useStyleSheet("wt.css");
root()->addWidget(new WtMenuDialog);
}
//---------------------------------------------------------------------------
Wt::WApplication *createApplication(const Wt::WEnvironment& env)
{
return new WtApplication(env);
}
//---------------------------------------------------------------------------
int main(int argc, char **argv)
{
// Declare the supported options.
boost::program_options::options_description d(
"Allowed options for CppWMenu");
std::string docroot;
std::string http_address;
std::string http_port;
d.add_options()
("help",
"produce this help message")
("docroot",
boost::program_options::value<std::string>(&docroot)->default_value("."),
"the docroot")
("http-address",
boost::program_options::value<std::string>(&http_address)->default_value("0.0.0.0"),
"the server's http address")
("http-port",
boost::program_options::value<std::string>(&http_port)->default_value("8080"),
"the server's http port")
;
boost::program_options::variables_map m;
boost::program_options::store(
boost::program_options::parse_command_line(
argc, argv, d), m);
boost::program_options::notify(m);
if (m.count("help"))
{
//Display the options_description
std::cout << d << "\n";
return 0;
}
//Create the arguments in std::string format
std::vector<std::string> v(7);
v[0] = argv[0];
v[1] = "--docroot";
v[2] = docroot;
v[3] = "--http-address";
v[4] = http_address;
v[5] = "--http-port";
v[6] = http_port;
//Convert the arguments to char* format
std::vector<char*> w(7);
for (int i=0; i!=7; ++i) w[i] = &v[i][0];
//Give Wt the modified parameters
return WRun(w.size(), &w[0], &createApplication);
}
//---------------------------------------------------------------------------
|