#include "WebApp.hpp" using namespace std; WebApp::WebApp() : Gtk::Image() { } WebApp::WebApp(string cmdline, string path, string icon, int x, int y) : Gtk::Image(icon) { _cmdline = cmdline; _path = path; _icon = icon; _x = x; _y = y; } string WebApp::GetCmdline() { return _cmdline; } void WebApp::SetCmdline(string cmdline) { _cmdline = cmdline; } string WebApp::GetPath() { return _path; } void WebApp::SetPath(string path) { _path = path; } string WebApp::GetIcon() { return _icon; } void WebApp::SetIcon(string icon) { _icon = icon; set(icon); } int WebApp::GetX() { return _x; } void WebApp::SetX(int x) { _x = x; } int WebApp::GetY() { return _y; } void WebApp::SetY(int y) { _y = y; } WebApp::~WebApp() { }