summaryrefslogtreecommitdiff
path: root/client/icons.h
diff options
context:
space:
mode:
Diffstat (limited to 'client/icons.h')
-rw-r--r--client/icons.h48
1 files changed, 48 insertions, 0 deletions
diff --git a/client/icons.h b/client/icons.h
new file mode 100644
index 0000000..33bc5ef
--- /dev/null
+++ b/client/icons.h
@@ -0,0 +1,48 @@
+/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
+/***************************************************************************
+ * icons.h
+ *
+ * Thu May 4 15:47:51 CEST 2006
+ * Copyright 2006 Bent Bisballe Nyeng
+ * deva@aasimon.org
+ ****************************************************************************/
+
+/*
+ * This file is part of MIaV.
+ *
+ * MIaV 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.
+ *
+ * MIaV 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 MIaV; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
+ */
+#ifndef __MIAV_ICONS_H__
+#define __MIAV_ICONS_H__
+
+#include <QPixmap>
+
+namespace Icons {
+ bool loadIcons();
+ bool unloadIcons();
+
+ // Pixmaps
+ extern QPixmap *cpr;
+ extern QPixmap *record;
+ extern QPixmap *stop;
+ extern QPixmap *snapshot;
+ extern QPixmap *freeze;
+ extern QPixmap *unfreeze;
+ extern QPixmap *mute;
+ extern QPixmap *unmute;
+ extern QPixmap *clear;
+};
+
+#endif/*__MIAV_ICONS_H__*/