1
0
mirror of git://projects.qi-hardware.com/gmenu2x.git synced 2024-07-02 18:32:20 +03:00
gmenu2x/src/link.h

77 lines
2.4 KiB
C
Raw Normal View History

/***************************************************************************
* Copyright (C) 2006 by Massimiliano Torromeo *
* massimiliano.torromeo@gmail.com *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#ifndef LINK_H
#define LINK_H
#include <string>
#include <iostream>
#include "button.h"
#include "surface.h"
using std::string;
class GMenu2X;
/**
Base class that represents a link on screen.
@author Massimiliano Torromeo <massimiliano.torromeo@gmail.com>
*/
class Link : public Button {
private:
uint iconX, padding;
protected:
GMenu2X *gmenu2x;
bool edited;
string title, description, icon, iconPath;
Surface *iconSurface;
Surface *icon_hover;
void recalcCoordinates();
void updateSurfaces();
public:
Link(GMenu2X *gmenu2x);
virtual ~Link() {};
virtual void paint();
virtual bool paintHover();
void setSize(int w, int h);
void setPosition(int x, int y);
const string &getTitle();
void setTitle(const string &title);
const string &getDescription();
void setDescription(const string &description);
const string &getIcon();
void setIcon(const string &icon);
virtual const string &searchIcon();
const string &getIconPath();
void setIconPath(const string &icon);
virtual void run();
};
#endif