#include <fstream>
#include <Wt/WApplication.h>
#include <Wt/WComboBox.h>
#include <Wt/WContainerWidget.h>
#include <Wt/WDatePicker.h>
#include <Wt/WDateValidator.h>
#include <Wt/WDialog.h>
#include <Wt/WEnvironment.h>
#include <Wt/WIntValidator.h>
#include <Wt/WItemDelegate.h>
#include <Wt/WLabel.h>
#include <Wt/WLineEdit.h>
#include <Wt/WMessageBox.h>
#include <Wt/WPushButton.h>
#include <Wt/WRegExpValidator.h>
#include <Wt/WGridLayout.h>
#include <Wt/WPopupMenu.h>
#include <Wt/WSortFilterProxyModel.h>
#include <Wt/WStandardItem.h>
#include <Wt/WStandardItemModel.h>
#include <Wt/WTableView.h>
#include <Wt/WTreeView.h>
#include <Wt/WText.h>
#include <Wt/WVBoxLayout.h>
#include <Wt/Chart/WPieChart.h>
#include "CsvUtil.h"
#include "FolderView.h"
Go to the source code of this file.
◆ createApplication()
Definition at line 686 of file TreeViewDragDrop.C.
688 auto app = std::make_unique<TreeViewDragDrop>(env);
689 app->setTwoPhaseRenderingThreshold(0);
690 app->setTitle(
"WTreeView Drag & Drop");
691 app->useStyleSheet(
"styles.css");
692 app->messageResourceBundle().use(WApplication::appRoot() +
"about");
695 return std::move(app);
◆ main()
int main |
( |
int |
argc, |
|
|
char ** |
argv |
|
) |
| |
Definition at line 698 of file TreeViewDragDrop.C.
std::unique_ptr< WApplication > createApplication(const WEnvironment &env)