Forked from
Librem5 / phosh
2295 commits behind the upstream repository.
-
Guido Gunther authored
This adds a common base class PhoshMenu for all top panel menus so phosh.c itself doesn't need to care about the details and we don't duplicate the code.
Guido Gunther authoredThis adds a common base class PhoshMenu for all top panel menus so phosh.c itself doesn't need to care about the details and we don't duplicate the code.
favorites.h 412 B
/*
* Copyright (C) 2018 Purism SPC
*
* SPDX-License-Identifier: GPL-3.0+
*/
#ifndef __PHOSH_FAVORITES_H__
#define __PHOSH_FAVORITES_H__
#include "menu.h"
#define PHOSH_TYPE_FAVORITES (phosh_favorites_get_type())
G_DECLARE_FINAL_TYPE (PhoshFavorites, phosh_favorites, PHOSH, FAVORITES, PhoshMenu)
GtkWidget * phosh_favorites_new (int position, const gpointer *shell);
#endif /* __PHOSH_FAVORITES_H__ */