File: nemo-simple-button.h

package info (click to toggle)
nemo 6.4.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 9,088 kB
  • sloc: ansic: 127,474; xml: 1,555; python: 1,434; sh: 57; makefile: 20
file content (23 lines) | stat: -rw-r--r-- 724 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* nemo-simple-button.h */

#ifndef __NEMO_SIMPLE_BUTTON_H__
#define __NEMO_SIMPLE_BUTTON_H__

#include <glib-object.h>
#include <gtk/gtk.h>
#include "nemo-extension-types.h"

G_BEGIN_DECLS

#define NEMO_TYPE_SIMPLE_BUTTON nemo_simple_button_get_type()

G_DECLARE_FINAL_TYPE (NemoSimpleButton, nemo_simple_button, NEMO, SIMPLE_BUTTON, GtkButton)

NemoSimpleButton *nemo_simple_button_new (void);
NemoSimpleButton *nemo_simple_button_new_from_icon_name (const gchar *icon_name, int icon_size);
NemoSimpleButton *nemo_simple_button_new_from_stock (const gchar *stock_id, int icon_size);
NemoSimpleButton *nemo_simple_button_new_from_file (const gchar *path, int icon_size);

G_END_DECLS

#endif /* __NEMO_SIMPLE_BUTTON_H__ */