Modernized code in guisan objects, improved GUI layout

This commit is contained in:
Dimitris Panokostas 2020-05-15 00:27:51 +02:00
parent ed31f6849d
commit ecb56ef5be
94 changed files with 7326 additions and 7347 deletions

View file

@ -62,30 +62,30 @@
namespace gcn
{
class Widget;
class Widget;
/**
* Represents a selection event.
*
* @author Olof Naessén
* @since 0.8.0
*/
class GCN_CORE_DECLSPEC SelectionEvent: public Event
{
public:
/**
* Represents a selection event.
*
* @author Olof Naessén
* @since 0.8.0
*/
class GCN_CORE_DECLSPEC SelectionEvent : public Event
{
public:
/**
* Constructor.
*
* @param source the source widget of the event.
*/
SelectionEvent(Widget* source);
/**
* Constructor.
*
* @param source the source widget of the event.
*/
SelectionEvent(Widget* source);
/**
* Destructor.
*/
virtual ~SelectionEvent();
};
/**
* Destructor.
*/
virtual ~SelectionEvent();
};
}
#endif // end GCN_SELECTIONEVENT_HPP