changeset 1544:7c7195221c0b trunk

[svn] Do not allow widgetcore private includes to be referenced directly. This breaks SVN right now, but I will fix it in a few moments.
author nenolod
date Thu, 10 Aug 2006 13:42:55 -0700
parents 65b85145be84
children fabbc01ee381
files ChangeLog audacious/widgets/eq_graph.h audacious/widgets/eq_slider.h audacious/widgets/hslider.h audacious/widgets/menurow.h audacious/widgets/monostereo.h audacious/widgets/number.h audacious/widgets/pbutton.h audacious/widgets/playlist_list.h audacious/widgets/playlist_slider.h audacious/widgets/playstatus.h audacious/widgets/sbutton.h audacious/widgets/skin.h audacious/widgets/svis.h audacious/widgets/tbutton.h audacious/widgets/textbox.h audacious/widgets/vis.h audacious/widgets/widget.h
diffstat 18 files changed, 87 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Thu Aug 10 12:55:28 2006 -0700
+++ b/ChangeLog	Thu Aug 10 13:42:55 2006 -0700
@@ -1,3 +1,12 @@
+2006-08-10 19:55:28 +0000  William Pitcock <nenolod@nenolod.net>
+  revision [2000]
+  - add widgetcore.h (replaces directly including all of that junk)
+  
+
+  Changes:        Modified:
+  +41 -0          trunk/audacious/widgets/widgetcore.h  
+
+
 2006-08-09 10:58:43 +0000  William Pitcock <nenolod@nenolod.net>
   revision [1998]
   - these might be nice huh?
--- a/audacious/widgets/eq_graph.h	Thu Aug 10 12:55:28 2006 -0700
+++ b/audacious/widgets/eq_graph.h	Thu Aug 10 13:42:55 2006 -0700
@@ -19,6 +19,10 @@
  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  */
 
+#ifndef _WIDGETCORE_H_
+#error Please do not include me directly! Use widgetcore.h instead!
+#endif
+
 #ifndef EQ_GRAPH_H
 #define EQ_GRAPH_H
 
--- a/audacious/widgets/eq_slider.h	Thu Aug 10 12:55:28 2006 -0700
+++ b/audacious/widgets/eq_slider.h	Thu Aug 10 13:42:55 2006 -0700
@@ -18,6 +18,11 @@
  *  along with this program; if not, write to the Free Software
  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  */
+
+#ifndef _WIDGETCORE_H_
+#error Please do not include me directly! Use widgetcore.h instead!
+#endif
+
 #ifndef EQ_SLIDER_H
 #define EQ_SLIDER_H
 
--- a/audacious/widgets/hslider.h	Thu Aug 10 12:55:28 2006 -0700
+++ b/audacious/widgets/hslider.h	Thu Aug 10 13:42:55 2006 -0700
@@ -15,6 +15,11 @@
  *  along with this program; if not, write to the Free Software
  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  */
+
+#ifndef _WIDGETCORE_H_
+#error Please do not include me directly! Use widgetcore.h instead!
+#endif
+
 #ifndef HSLIDER_H
 #define HSLIDER_H
 
--- a/audacious/widgets/menurow.h	Thu Aug 10 12:55:28 2006 -0700
+++ b/audacious/widgets/menurow.h	Thu Aug 10 13:42:55 2006 -0700
@@ -18,6 +18,11 @@
  *  along with this program; if not, write to the Free Software
  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  */
+
+#ifndef _WIDGETCORE_H_
+#error Please do not include me directly! Use widgetcore.h instead!
+#endif
+
 #ifndef MENUROW_H
 #define	MENUROW_H
 
--- a/audacious/widgets/monostereo.h	Thu Aug 10 12:55:28 2006 -0700
+++ b/audacious/widgets/monostereo.h	Thu Aug 10 13:42:55 2006 -0700
@@ -18,6 +18,11 @@
  *  along with this program; if not, write to the Free Software
  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  */
+
+#ifndef _WIDGETCORE_H_
+#error Please do not include me directly! Use widgetcore.h instead!
+#endif
+
 #ifndef MONOSTEREO_H
 #define MONOSTEREO_H
 
--- a/audacious/widgets/number.h	Thu Aug 10 12:55:28 2006 -0700
+++ b/audacious/widgets/number.h	Thu Aug 10 13:42:55 2006 -0700
@@ -18,6 +18,11 @@
  *  along with this program; if not, write to the Free Software
  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  */
+
+#ifndef _WIDGETCORE_H_
+#error Please do not include me directly! Use widgetcore.h instead!
+#endif
+
 #ifndef NUMBER_H
 #define NUMBER_H
 
--- a/audacious/widgets/pbutton.h	Thu Aug 10 12:55:28 2006 -0700
+++ b/audacious/widgets/pbutton.h	Thu Aug 10 13:42:55 2006 -0700
@@ -18,6 +18,11 @@
  *  along with this program; if not, write to the Free Software
  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  */
+
+#ifndef _WIDGETCORE_H_
+#error Please do not include me directly! Use widgetcore.h instead!
+#endif
+
 #ifndef PBUTTON_H
 #define PBUTTON_H
 
--- a/audacious/widgets/playlist_list.h	Thu Aug 10 12:55:28 2006 -0700
+++ b/audacious/widgets/playlist_list.h	Thu Aug 10 13:42:55 2006 -0700
@@ -19,6 +19,10 @@
  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  */
 
+#ifndef _WIDGETCORE_H_
+#error Please do not include me directly! Use widgetcore.h instead!
+#endif
+
 #ifndef PLAYLIST_LIST_H
 #define PLAYLIST_LIST_H
 
--- a/audacious/widgets/playlist_slider.h	Thu Aug 10 12:55:28 2006 -0700
+++ b/audacious/widgets/playlist_slider.h	Thu Aug 10 13:42:55 2006 -0700
@@ -19,6 +19,10 @@
  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  */
 
+#ifndef _WIDGETCORE_H_
+#error Please do not include me directly! Use widgetcore.h instead!
+#endif
+
 #ifndef PLAYLIST_SLIDER_H
 #define PLAYLIST_SLIDER_H
 
--- a/audacious/widgets/playstatus.h	Thu Aug 10 12:55:28 2006 -0700
+++ b/audacious/widgets/playstatus.h	Thu Aug 10 13:42:55 2006 -0700
@@ -15,6 +15,11 @@
  *  along with this program; if not, write to the Free Software
  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  */
+
+#ifndef _WIDGETCORE_H_
+#error Please do not include me directly! Use widgetcore.h instead!
+#endif
+
 #ifndef PLAYSTATUS_H
 #define PLAYSTATUS_H
 
--- a/audacious/widgets/sbutton.h	Thu Aug 10 12:55:28 2006 -0700
+++ b/audacious/widgets/sbutton.h	Thu Aug 10 13:42:55 2006 -0700
@@ -19,6 +19,10 @@
  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  */
 
+#ifndef _WIDGETCORE_H_
+#error Please do not include me directly! Use widgetcore.h instead!
+#endif
+
 #ifndef SBUTTON_H
 #define SBUTTON_H
 
--- a/audacious/widgets/skin.h	Thu Aug 10 12:55:28 2006 -0700
+++ b/audacious/widgets/skin.h	Thu Aug 10 13:42:55 2006 -0700
@@ -19,6 +19,10 @@
  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  */
 
+#ifndef _WIDGETCORE_H_
+#error Please do not include me directly! Use widgetcore.h instead!
+#endif
+
 #ifndef SKIN_H
 #define SKIN_H
 
--- a/audacious/widgets/svis.h	Thu Aug 10 12:55:28 2006 -0700
+++ b/audacious/widgets/svis.h	Thu Aug 10 13:42:55 2006 -0700
@@ -18,6 +18,11 @@
  *  along with this program; if not, write to the Free Software
  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  */
+
+#ifndef _WIDGETCORE_H_
+#error Please do not include me directly! Use widgetcore.h instead!
+#endif
+
 #ifndef SVIS_H
 #define SVIS_H
 
--- a/audacious/widgets/tbutton.h	Thu Aug 10 12:55:28 2006 -0700
+++ b/audacious/widgets/tbutton.h	Thu Aug 10 13:42:55 2006 -0700
@@ -19,6 +19,10 @@
  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  */
 
+#ifndef _WIDGETCORE_H_
+#error Please do not include me directly! Use widgetcore.h instead!
+#endif
+
 #ifndef TBUTTON_H
 #define TBUTTON_H
 
--- a/audacious/widgets/textbox.h	Thu Aug 10 12:55:28 2006 -0700
+++ b/audacious/widgets/textbox.h	Thu Aug 10 13:42:55 2006 -0700
@@ -19,6 +19,10 @@
  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  */
 
+#ifndef _WIDGETCORE_H_
+#error Please do not include me directly! Use widgetcore.h instead!
+#endif
+
 #ifndef TEXTBOX_H
 #define	TEXTBOX_H
 
--- a/audacious/widgets/vis.h	Thu Aug 10 12:55:28 2006 -0700
+++ b/audacious/widgets/vis.h	Thu Aug 10 13:42:55 2006 -0700
@@ -18,6 +18,11 @@
  *  along with this program; if not, write to the Free Software
  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  */
+
+#ifndef _WIDGETCORE_H_
+#error Please do not include me directly! Use widgetcore.h instead!
+#endif
+
 #ifndef VIS_H
 #define VIS_H
 
--- a/audacious/widgets/widget.h	Thu Aug 10 12:55:28 2006 -0700
+++ b/audacious/widgets/widget.h	Thu Aug 10 13:42:55 2006 -0700
@@ -18,6 +18,11 @@
  *  along with this program; if not, write to the Free Software
  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  */
+
+#ifndef _WIDGETCORE_H_
+#error Please do not include me directly! Use widgetcore.h instead!
+#endif
+
 #ifndef WIDGET_H
 #define WIDGET_H