changeset 1957:1bab360fd6c8 trunk

[svn] - add scaffolding for newui
author nenolod
date Sun, 12 Nov 2006 00:38:03 -0800
parents fb61da4f4c23
children 34da95abda9c
files ChangeLog audacious/newui/Makefile audacious/newui/newui_window.c audacious/newui/newui_window.h
diffstat 4 files changed, 83 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Sat Nov 11 14:03:41 2006 -0800
+++ b/ChangeLog	Sun Nov 12 00:38:03 2006 -0800
@@ -1,3 +1,11 @@
+2006-11-11 22:03:41 +0000  William Pitcock <nenolod@nenolod.net>
+  revision [2883]
+  - remove unused declaration "filepopup_pixbuf".
+  
+  trunk/audacious/ui_fileinfo.c |    6 ++++--
+  1 file changed, 4 insertions(+), 2 deletions(-)
+
+
 2006-11-06 12:00:12 +0000  William Pitcock <nenolod@nenolod.net>
   revision [2877]
   - make doublesize work with modern skins
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/audacious/newui/Makefile	Sun Nov 12 00:38:03 2006 -0800
@@ -0,0 +1,27 @@
+include ../../mk/rules.mk
+include ../../mk/init.mk
+
+OBJECTIVE_LIBS_NOINST = libnewui.a
+
+LDFLAGS += -Wl,-export-dynamic
+
+CFLAGS += \
+	$(GTK_CFLAGS)      \
+	$(LIBGLADE_CFLAGS) \
+	$(BEEP_DEFINES)    \
+	$(ARCH_DEFINES)    \
+	-D_AUDACIOUS_CORE  \
+	-I../..    \
+	-I..	   \
+	-I../../intl \
+	-Wno-strict-aliasing
+
+SOURCES = \
+	newui_window.c
+
+OBJECTS = ${SOURCES:.c=.o}
+
+include ../../mk/objective.mk
+
+libnewui.a: $(OBJECTS)
+	$(AR) cq $@ $(OBJECTS)
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/audacious/newui/newui_window.c	Sun Nov 12 00:38:03 2006 -0800
@@ -0,0 +1,21 @@
+/*  Audacious
+ *  Copyright (C) 2005-2006  Audacious team
+ *
+ *  This program 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.
+ *
+ *  This program 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 this program; if not, write to the Free Software
+ *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 
+ *  02110-1301, USA.
+ */
+
+#include "newui_window.h"
+#include "audacious/glade.h"
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/audacious/newui/newui_window.h	Sun Nov 12 00:38:03 2006 -0800
@@ -0,0 +1,27 @@
+/*  Audacious
+ *  Copyright (C) 2005-2006  Audacious team
+ *
+ *  This program 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.
+ *
+ *  This program 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 this program; if not, write to the Free Software
+ *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 
+ *  02110-1301, USA.
+ */
+
+#ifndef NEWUI_WINDOW_H
+#define NEWUI_WINDOW_H
+
+#include <gtk/gtk.h>
+
+
+
+#endif