Wt examples 4.8.2
ImagesWidget.C
Go to the documentation of this file.
1/*
2 * Copyright (C) 2011 Emweb bv, Herent, Belgium
3 *
4 * See the LICENSE file for terms of use.
5 */
6
7#include "ImagesWidget.h"
8
9#include <Wt/WImage.h>
10#include <Wt/WAny.h>
11
12const int ImagesWidget::HURRAY = -1;
13
15{
16 for (int i = 0; i <= maxGuesses; ++i) {
17 std::string fname = "icons/hangman";
18 fname += std::to_string(i) + ".jpg";
19 WImage *theImage = addWidget(std::make_unique<WImage>(fname));
20 images_.push_back(theImage);
21
22 // Although not necessary, we can avoid flicker (on konqueror)
23 // by presetting the image size.
24 theImage->resize(256, 256);
25 theImage->hide();
26 }
27
28 WImage *hurray = addWidget(std::make_unique<WImage>("icons/hangmanhurray.jpg"));
29 hurray->hide();
30 images_.push_back(hurray);
31
32 image_ = 0;
33 showImage(maxGuesses);
34}
35
37{
38 image(image_)->hide();
39 image_ = index;
40 image(image_)->show();
41}
42
43WImage *ImagesWidget::image(int index) const
44{
45 return index == HURRAY ? images_.back() : images_[index];
46}
void showImage(int index)
Definition: ImagesWidget.C:36
static const int HURRAY
Definition: ImagesWidget.h:20
WImage * image(int index) const
Definition: ImagesWidget.C:43
std::vector< WImage * > images_
Definition: ImagesWidget.h:32
ImagesWidget(int maxGuesses)
Definition: ImagesWidget.C:14

Generated on Sat Nov 5 2022 for the C++ Web Toolkit (Wt) by doxygen 1.9.5