Cadabra
Computer algebra system for field theory problems
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
ImageView.hh
Go to the documentation of this file.
1 
2 #pragma once
3 
4 #include <gtkmm/box.h>
5 #include <gtkmm/image.h>
6 
7 namespace cadabra {
8 
12 
13  class ImageView : public Gtk::VBox {
14  public:
15  ImageView();
16  virtual ~ImageView();
17 
18  void set_image_from_base64(const std::string& b64);
19 
20  private:
21  Gtk::Image image;
22  };
23 
24 };
ImageView()
Definition: ImageView.cc:10
void set_image_from_base64(const std::string &b64)
Definition: ImageView.cc:24
virtual ~ImageView()
Definition: ImageView.cc:20
Gtk::Image image
Definition: ImageView.hh:21
An image viewing widget.
Definition: ImageView.hh:13