# HG changeset patch # User nenolod # Date 1163320683 28800 # Node ID 1bab360fd6c890ebc187c2d47a5b4345bf2a7a3c # Parent fb61da4f4c23f76ed939f74dd7bfc2a53d0ab4c5 [svn] - add scaffolding for newui diff -r fb61da4f4c23 -r 1bab360fd6c8 ChangeLog --- 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 + 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 revision [2877] - make doublesize work with modern skins diff -r fb61da4f4c23 -r 1bab360fd6c8 audacious/newui/Makefile --- /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) diff -r fb61da4f4c23 -r 1bab360fd6c8 audacious/newui/newui_window.c --- /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" diff -r fb61da4f4c23 -r 1bab360fd6c8 audacious/newui/newui_window.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 + + + +#endif