e1b828edf2
Finally the trash, which was the last item that needed to be implemented as an action, is an action, a KatzeArrayAction to be exact. This simplifies more code and also makes Window and RecentlyVisited generically implementable. Incidentally this change also fixes a bug where the browser tried to add a new tab when the last one was closed, even while destroying itself. Furthermore sokoke_image_menu_item_ellipsized and sokoke_widget_popup were promoted to Katze. We're still keeping the old functions for now.
22 lines
596 B
C
22 lines
596 B
C
/*
|
|
Copyright (C) 2007 Christian Dywan <christian@twotoasts.de>
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Lesser General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
See the file COPYING for the full license text.
|
|
*/
|
|
|
|
#ifndef __KATZE_H__
|
|
#define __KATZE_H__
|
|
|
|
#include "katze-throbber.h"
|
|
#include "katze-utils.h"
|
|
#include "katze-item.h"
|
|
#include "katze-list.h"
|
|
#include "katze-array.h"
|
|
#include "katze-arrayaction.h"
|
|
|
|
#endif /* __KATZE_H__ */
|