/usr/lib/Wt/examples/treeview-dragdrop/TreeViewDragDrop.C is in witty-examples 3.1.10-1ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 | /*
* Copyright (C) 2008 Emweb bvba, Kessel-Lo, Belgium.
*
* See the LICENSE file for terms of use.
*/
#include <fstream>
#include <Wt/WApplication>
#include <Wt/WComboBox>
#include <Wt/WContainerWidget>
#include <Wt/WDatePicker>
#include <Wt/WDateValidator>
#include <Wt/WDialog>
#include <Wt/WEnvironment>
#include <Wt/WIntValidator>
#include <Wt/WItemDelegate>
#include <Wt/WLabel>
#include <Wt/WLineEdit>
#include <Wt/WMessageBox>
#include <Wt/WPushButton>
#include <Wt/WRegExpValidator>
#include <Wt/WGridLayout>
#include <Wt/WPopupMenu>
#include <Wt/WSortFilterProxyModel>
#include <Wt/WStandardItem>
#include <Wt/WStandardItemModel>
#include <Wt/WTableView>
#include <Wt/WTreeView>
#include <Wt/WText>
#include <Wt/WVBoxLayout>
#include <Wt/Chart/WPieChart>
#include "CsvUtil.h"
#include "FolderView.h"
using namespace Wt;
/**
* \defgroup treeviewdragdrop Drag and drop in WTreeView example
*/
/*@{*/
/*! \class FileModel
* \brief A specialized standard item model which report a specific
* drag and drop mime type.
*
* A specific drag and drop mime type instead of the generic abstract
* item model is returned by the model.
*/
class FileModel : public WStandardItemModel
{
public:
/*! \brief Constructor.
*/
FileModel(WObject *parent)
: WStandardItemModel(parent) { }
/*! \brief Return the mime type.
*/
virtual std::string mimeType() const {
return FolderView::FileSelectionMimeType;
}
/// Date display format.
static WString dateDisplayFormat;
/// Date edit format.
static WString dateEditFormat;
};
WString FileModel::dateDisplayFormat(WString::fromUTF8("MMM dd, yyyy"));
WString FileModel::dateEditFormat(WString::fromUTF8("dd-MM-yyyy"));
/*! \class FileEditDialog
* \brief A dialog for editing a 'file'.
*/
class FileEditDialog : public WDialog
{
public:
FileEditDialog(WAbstractItemModel *model, const WModelIndex& item)
: WDialog("Edit..."),
model_(model),
item_(item)
{
int modelRow = item_.row();
resize(300, WLength::Auto);
/*
* Create the form widgets, and load them with data from the model.
*/
// name
nameEdit_ = new WLineEdit(asString(model_->data(modelRow, 1)));
// type
typeEdit_ = new WComboBox();
typeEdit_->addItem("Document");
typeEdit_->addItem("Spreadsheet");
typeEdit_->addItem("Presentation");
typeEdit_->setCurrentIndex
(typeEdit_->findText(asString(model_->data(modelRow, 2))));
// size
sizeEdit_ = new WLineEdit(asString(model_->data(modelRow, 3)));
sizeEdit_->setValidator
(new WIntValidator(0, std::numeric_limits<int>::max(), this));
// created
createdPicker_ = new WDatePicker();
createdPicker_->lineEdit()->validator()->setMandatory(true);
createdPicker_->setFormat(FileModel::dateEditFormat);
createdPicker_->setDate(boost::any_cast<WDate>(model_->data(modelRow, 4)));
// modified
modifiedPicker_ = new WDatePicker();
modifiedPicker_->lineEdit()->validator()->setMandatory(true);
modifiedPicker_->setFormat(FileModel::dateEditFormat);
modifiedPicker_->setDate(boost::any_cast<WDate>(model_->data(modelRow, 5)));
/*
* Use a grid layout for the labels and fields
*/
WGridLayout *layout = new WGridLayout();
WLabel *l;
int row = 0;
layout->addWidget(l = new WLabel("Name:"), row, 0);
layout->addWidget(nameEdit_, row, 1);
l->setBuddy(nameEdit_);
++row;
layout->addWidget(l = new WLabel("Type:"), row, 0);
layout->addWidget(typeEdit_, row, 1, AlignTop);
l->setBuddy(typeEdit_);
++row;
layout->addWidget(l = new WLabel("Size:"), row, 0);
layout->addWidget(sizeEdit_, row, 1);
l->setBuddy(sizeEdit_);
++row;
layout->addWidget(l = new WLabel("Created:"), row, 0);
layout->addWidget(createdPicker_->lineEdit(), row, 1);
layout->addWidget(createdPicker_, row, 2);
l->setBuddy(createdPicker_->lineEdit());
++row;
layout->addWidget(l = new WLabel("Modified:"), row, 0);
layout->addWidget(modifiedPicker_->lineEdit(), row, 1);
layout->addWidget(modifiedPicker_, row, 2);
l->setBuddy(modifiedPicker_->lineEdit());
++row;
WPushButton *b;
WContainerWidget *buttons = new WContainerWidget();
buttons->addWidget(b = new WPushButton("Save"));
b->clicked().connect(this, &WDialog::accept);
contents()->enterPressed().connect(this, &WDialog::accept);
buttons->addWidget(b = new WPushButton("Cancel"));
b->clicked().connect(this, &WDialog::reject);
/*
* Focus the form widget that corresonds to the selected item.
*/
switch (item.column()) {
case 2:
typeEdit_->setFocus(); break;
case 3:
sizeEdit_->setFocus(); break;
case 4:
createdPicker_->lineEdit()->setFocus(); break;
case 5:
modifiedPicker_->lineEdit()->setFocus(); break;
default:
nameEdit_->setFocus(); break;
}
layout->addWidget(buttons, row, 0, 0, 3, AlignCenter);
layout->setColumnStretch(1, 1);
contents()->setLayout(layout, AlignTop | AlignJustify);
finished().connect(this, &FileEditDialog::handleFinish);
show();
}
private:
WAbstractItemModel *model_;
WModelIndex item_;
WLineEdit *nameEdit_, *sizeEdit_;
WComboBox *typeEdit_;
WDatePicker *createdPicker_, *modifiedPicker_;
void handleFinish(DialogCode result)
{
if (result == WDialog::Accepted) {
/*
* Update the model with data from the edit widgets.
*
* You will want to do some validation here...
*
* Note that we directly update the source model to avoid
* problems caused by the dynamic sorting of the proxy model,
* which reorders row numbers, and would cause us to switch to editing
* the wrong data.
*/
WAbstractItemModel *m = model_;
int modelRow = item_.row();
WAbstractProxyModel *proxyModel = dynamic_cast<WAbstractProxyModel *>(m);
if (proxyModel) {
m = proxyModel->sourceModel();
modelRow = proxyModel->mapToSource(item_).row();
}
m->setData(modelRow, 1, boost::any(nameEdit_->text()));
m->setData(modelRow, 2, boost::any(typeEdit_->currentText()));
m->setData(modelRow, 3, boost::any(boost::lexical_cast<int>
(sizeEdit_->text().toUTF8())));
m->setData(modelRow, 4, boost::any(createdPicker_->date()));
m->setData(modelRow, 5, boost::any(modifiedPicker_->date()));
}
delete this;
}
};
/*! \class TreeViewDragDrop
* \brief Main application class.
*/
class TreeViewDragDrop : public WApplication
{
public:
/*! \brief Constructor.
*/
TreeViewDragDrop(const WEnvironment &env)
: WApplication(env),
popup_(0),
popupActionBox_(0)
{
setCssTheme("polished");
/*
* Create the data models.
*/
folderModel_ = new WStandardItemModel(0, 1, this);
populateFolders();
fileModel_ = new FileModel(this);
populateFiles();
/*
The header items are also endered using an ItemDelegate, and thus
support other data, e.g.:
fileModel_->setHeaderFlags(0, Horizontal, HeaderIsUserCheckable);
fileModel_->setHeaderData(0, Horizontal,
std::string("icons/file.gif"),
Wt::DecorationRole);
*/
fileFilterModel_ = new WSortFilterProxyModel(this);
fileFilterModel_->setSourceModel(fileModel_);
fileFilterModel_->setDynamicSortFilter(true);
fileFilterModel_->setFilterKeyColumn(0);
fileFilterModel_->setFilterRole(UserRole);
/*
* Setup the user interface.
*/
createUI();
}
virtual ~TreeViewDragDrop() {
delete popup_;
delete popupActionBox_;
}
private:
/// The folder model (used by folderView_)
WStandardItemModel *folderModel_;
/// The file model (used by fileView_)
WStandardItemModel *fileModel_;
/// The sort filter proxy model that adapts fileModel_
WSortFilterProxyModel *fileFilterModel_;
/// Maps folder id's to folder descriptions.
std::map<std::string, WString> folderNameMap_;
/// The folder view.
WTreeView *folderView_;
/// The file view.
WTableView *fileView_;
/// Popup menu on the folder view
WPopupMenu *popup_;
/// Message box to confirm the poup menu action
WMessageBox *popupActionBox_;
/*! \brief Setup the user interface.
*/
void createUI() {
WContainerWidget *w = root();
w->setStyleClass("maindiv");
/*
* The main layout is a 3x2 grid layout.
*/
WGridLayout *layout = new WGridLayout();
layout->addWidget(createTitle("Folders"), 0, 0);
layout->addWidget(createTitle("Files"), 0, 1);
layout->addWidget(folderView(), 1, 0);
layout->setColumnResizable(0);
// select the first folder
folderView_->select(folderModel_->index(0, 0, folderModel_->index(0, 0)));
WVBoxLayout *vbox = new WVBoxLayout();
vbox->addWidget(fileView(), 1);
vbox->addWidget(pieChart(), 1);
vbox->setResizable(0);
layout->addLayout(vbox, 1, 1);
layout->addWidget(aboutDisplay(), 2, 0, 1, 2, AlignTop);
/*
* Let row 1 and column 1 take the excess space.
*/
layout->setRowStretch(1, 1);
layout->setColumnStretch(1, 1);
w->setLayout(layout);
}
/*! \brief Creates a title widget.
*/
WText *createTitle(const WString& title) {
WText *result = new WText(title);
result->setInline(false);
result->setStyleClass("title");
return result;
}
/*! \brief Creates the folder WTreeView
*/
WTreeView *folderView() {
WTreeView *treeView = new FolderView();
/*
* To support right-click, we need to disable the built-in browser
* context menu.
*
* Note that disabling the context menu and catching the
* right-click does not work reliably on all browsers.
*/
treeView->setAttributeValue
("oncontextmenu",
"event.cancelBubble = true; event.returnValue = false; return false;");
treeView->setModel(folderModel_);
treeView->resize(200, WLength::Auto);
treeView->setSelectionMode(SingleSelection);
treeView->expandToDepth(1);
treeView->selectionChanged()
.connect(this, &TreeViewDragDrop::folderChanged);
treeView->mouseWentUp().connect(this, &TreeViewDragDrop::showPopup);
folderView_ = treeView;
return treeView;
}
/*! \brief Creates the file table view (a WTableView)
*/
WTableView *fileView() {
WTableView *tableView = new WTableView();
tableView->setAlternatingRowColors(true);
tableView->setModel(fileFilterModel_);
tableView->setSelectionMode(ExtendedSelection);
tableView->setDragEnabled(true);
tableView->setColumnWidth(0, 100);
tableView->setColumnWidth(1, 150);
tableView->setColumnWidth(2, 100);
tableView->setColumnWidth(3, 60);
tableView->setColumnWidth(4, 100);
tableView->setColumnWidth(5, 100);
WItemDelegate *delegate = new WItemDelegate(this);
delegate->setTextFormat(FileModel::dateDisplayFormat);
tableView->setItemDelegateForColumn(4, delegate);
tableView->setItemDelegateForColumn(5, delegate);
tableView->setColumnAlignment(3, AlignRight);
tableView->setColumnAlignment(4, AlignRight);
tableView->setColumnAlignment(5, AlignRight);
tableView->sortByColumn(1, AscendingOrder);
tableView->doubleClicked().connect(this, &TreeViewDragDrop::editFile);
fileView_ = tableView;
return tableView;
}
/*! \brief Edit a particular row.
*/
void editFile(const WModelIndex& item) {
new FileEditDialog(fileView_->model(), item);
}
/*! \brief Creates the chart.
*/
WWidget *pieChart() {
using namespace Chart;
WPieChart *chart = new WPieChart();
chart->setModel(fileFilterModel_);
chart->setTitle("File sizes");
chart->setLabelsColumn(1); // Name
chart->setDataColumn(3); // Size
chart->setPerspectiveEnabled(true, 0.2);
chart->setDisplayLabels(Outside | TextLabel);
if (!WApplication::instance()->environment().ajax()) {
chart->resize(500, 200);
chart->setMargin(WLength::Auto, Left | Right);
WContainerWidget *w = new WContainerWidget();
w->addWidget(chart);
w->setStyleClass("about");
return w;
} else {
chart->setStyleClass("about");
return chart;
}
}
/*! \brief Creates the hints text.
*/
WWidget *aboutDisplay() {
WText *result = new WText(WString::tr("about-text"));
result->setStyleClass("about");
return result;
}
/*! \brief Change the filter on the file view when the selected folder
* changes.
*/
void folderChanged() {
if (folderView_->selectedIndexes().empty())
return;
WModelIndex selected = *folderView_->selectedIndexes().begin();
boost::any d = selected.data(UserRole);
if (!d.empty()) {
std::string folder = boost::any_cast<std::string>(d);
// For simplicity, we assume here that the folder-id does not
// contain special regexp characters, otherwise these need to be
// escaped -- or use the \Q \E qutoing escape regular expression
// syntax (and escape \E)
fileFilterModel_->setFilterRegExp(folder);
}
}
/*! \brief Show a popup for a folder item.
*/
void showPopup(const WModelIndex& item, const WMouseEvent& event) {
if (event.button() == WMouseEvent::RightButton) {
// Select the item, it was not yet selected.
if (!folderView_->isSelected(item))
folderView_->select(item);
if (!popup_) {
popup_ = new WPopupMenu();
popup_->addItem("icons/folder_new.gif", "Create a New Folder");
popup_->addItem("Rename this Folder")->setCheckable(true);
popup_->addItem("Delete this Folder");
popup_->addSeparator();
popup_->addItem("Folder Details");
popup_->addSeparator();
popup_->addItem("Application Inventory");
popup_->addItem("Hardware Inventory");
popup_->addSeparator();
WPopupMenu *subMenu = new WPopupMenu();
subMenu->addItem("Sub Item 1");
subMenu->addItem("Sub Item 2");
popup_->addMenu("File Deployments", subMenu);
/*
* This is one method of executing a popup, which does not block a
* thread for a reentrant event loop, and thus scales.
*
* Alternatively you could call WPopupMenu::exec(), which returns
* the result, but while waiting for it, blocks the thread.
*/
popup_->aboutToHide().connect(this, &TreeViewDragDrop::popupAction);
}
if (popup_->isHidden())
popup_->popup(event);
else
popup_->hide();
}
}
/** \brief Process the result of the popup menu
*/
void popupAction() {
if (popup_->result()) {
/*
* You could also bind extra data to an item using setData() and
* check here for the action asked. For now, we just use the text.
*/
WString text = popup_->result()->text();
popup_->hide();
popupActionBox_ = new WMessageBox("Sorry.","Action '" + text
+ "' is not implemented.", NoIcon, Ok);
popupActionBox_->buttonClicked()
.connect(this, &TreeViewDragDrop::dialogDone);
popupActionBox_->show();
} else {
popup_->hide();
}
}
/** \brief Process the result of the message box.
*/
void dialogDone() {
delete popupActionBox_;
popupActionBox_ = 0;
}
/*! \brief Populate the files model.
*
* Data (and headers) is read from the CSV file data/files.csv. We
* add icons to the first column, resolve the folder id to the
* actual folder name, and configure item flags, and parse date
* values.
*/
void populateFiles() {
fileModel_->invisibleRootItem()->setRowCount(0);
std::ifstream f((appRoot() + "data/files.csv").c_str());
if (!f)
throw std::runtime_error("Could not read: data/files.csv");
readFromCsv(f, fileModel_);
for (int i = 0; i < fileModel_->rowCount(); ++i) {
WStandardItem *item = fileModel_->item(i, 0);
item->setFlags(item->flags() | ItemIsDragEnabled);
item->setIcon("icons/file.gif");
std::string folderId = item->text().toUTF8();
item->setData(boost::any(folderId), UserRole);
item->setText(folderNameMap_[folderId]);
convertToDate(fileModel_->item(i, 4));
convertToDate(fileModel_->item(i, 5));
}
}
/*! \brief Convert a string to a date.
*/
void convertToDate(WStandardItem *item) {
WDate d = WDate::fromString(item->text(), FileModel::dateEditFormat);
item->setData(boost::any(d), DisplayRole);
}
/*! \brief Populate the folders model.
*/
void populateFolders() {
WStandardItem *level1, *level2;
folderModel_->appendRow(level1 = createFolderItem("San Fransisco"));
level1->appendRow(level2 = createFolderItem("Investors", "sf-investors"));
level1->appendRow(level2 = createFolderItem("Fellows", "sf-fellows"));
folderModel_->appendRow(level1 = createFolderItem("Sophia Antipolis"));
level1->appendRow(level2 = createFolderItem("R&D", "sa-r_d"));
level1->appendRow(level2 = createFolderItem("Services", "sa-services"));
level1->appendRow(level2 = createFolderItem("Support", "sa-support"));
level1->appendRow(level2 = createFolderItem("Billing", "sa-billing"));
folderModel_->appendRow(level1 = createFolderItem("New York"));
level1->appendRow(level2 = createFolderItem("Marketing", "ny-marketing"));
level1->appendRow(level2 = createFolderItem("Sales", "ny-sales"));
level1->appendRow(level2 = createFolderItem("Advisors", "ny-advisors"));
folderModel_->appendRow(level1 = createFolderItem
(WString::fromUTF8("Frankfürt")));
level1->appendRow(level2 = createFolderItem("Sales", "frank-sales"));
folderModel_->setHeaderData(0, Horizontal,
boost::any(std::string("SandBox")));
}
/*! \brief Create a folder item.
*
* Configures flags for drag and drop support.
*/
WStandardItem *createFolderItem(const WString& location,
const std::string& folderId = std::string())
{
WStandardItem *result = new WStandardItem(location);
if (!folderId.empty()) {
result->setData(boost::any(folderId));
result->setFlags(result->flags() | ItemIsDropEnabled);
folderNameMap_[folderId] = location;
} else
result->setFlags(result->flags().clear(ItemIsSelectable));
result->setIcon("icons/folder.gif");
return result;
}
};
WApplication *createApplication(const WEnvironment& env)
{
WApplication *app = new TreeViewDragDrop(env);
app->setTwoPhaseRenderingThreshold(0);
app->setTitle("WTreeView Drag & Drop");
app->useStyleSheet("styles.css");
app->messageResourceBundle().use(WApplication::appRoot() + "about");
app->refresh();
return app;
}
int main(int argc, char **argv)
{
return WRun(argc, argv, &createApplication);
}
/*@}*/
|