mirror of
				https://github.com/labwc/labwc.git
				synced 2025-11-03 09:01:51 -05:00 
			
		
		
		
	mv theme.c ..
This commit is contained in:
		
							parent
							
								
									22d66c81ca
								
							
						
					
					
						commit
						de88b69d62
					
				
					 10 changed files with 7 additions and 12 deletions
				
			
		| 
						 | 
					@ -7,7 +7,6 @@
 | 
				
			||||||
#include <assert.h>
 | 
					#include <assert.h>
 | 
				
			||||||
#include "config/rcxml.h"
 | 
					#include "config/rcxml.h"
 | 
				
			||||||
#include "labwc.h"
 | 
					#include "labwc.h"
 | 
				
			||||||
#include "theme/theme.h"
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define BORDER_WIDTH (2)
 | 
					#define BORDER_WIDTH (2)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -3,7 +3,7 @@
 | 
				
			||||||
#include "common/spawn.h"
 | 
					#include "common/spawn.h"
 | 
				
			||||||
#include "config/session.h"
 | 
					#include "config/session.h"
 | 
				
			||||||
#include "labwc.h"
 | 
					#include "labwc.h"
 | 
				
			||||||
#include "theme/theme.h"
 | 
					#include "theme.h"
 | 
				
			||||||
#include "xbm/xbm.h"
 | 
					#include "xbm/xbm.h"
 | 
				
			||||||
#include "menu/menu.h"
 | 
					#include "menu/menu.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -16,7 +16,7 @@
 | 
				
			||||||
#include "common/string-helpers.h"
 | 
					#include "common/string-helpers.h"
 | 
				
			||||||
#include "labwc.h"
 | 
					#include "labwc.h"
 | 
				
			||||||
#include "menu/menu.h"
 | 
					#include "menu/menu.h"
 | 
				
			||||||
#include "theme/theme.h"
 | 
					#include "theme.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static const char font[] = "Sans 8";
 | 
					static const char font[] = "Sans 8";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -12,6 +12,7 @@ labwc_sources = files(
 | 
				
			||||||
  'output.c',
 | 
					  'output.c',
 | 
				
			||||||
  'seat.c',
 | 
					  'seat.c',
 | 
				
			||||||
  'server.c',
 | 
					  'server.c',
 | 
				
			||||||
 | 
					  'theme.c',
 | 
				
			||||||
  'view.c',
 | 
					  'view.c',
 | 
				
			||||||
  'xdg.c',
 | 
					  'xdg.c',
 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
| 
						 | 
					@ -26,6 +27,5 @@ endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
subdir('common')
 | 
					subdir('common')
 | 
				
			||||||
subdir('config')
 | 
					subdir('config')
 | 
				
			||||||
subdir('theme')
 | 
					 | 
				
			||||||
subdir('xbm')
 | 
					subdir('xbm')
 | 
				
			||||||
subdir('menu')
 | 
					subdir('menu')
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -12,7 +12,7 @@
 | 
				
			||||||
#include <wlr/util/region.h>
 | 
					#include <wlr/util/region.h>
 | 
				
			||||||
#include "labwc.h"
 | 
					#include "labwc.h"
 | 
				
			||||||
#include "menu/menu.h"
 | 
					#include "menu/menu.h"
 | 
				
			||||||
#include "theme/theme.h"
 | 
					#include "theme.h"
 | 
				
			||||||
#include "layers.h"
 | 
					#include "layers.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//#define DEBUG 1
 | 
					//#define DEBUG 1
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -12,7 +12,7 @@
 | 
				
			||||||
#include "labwc.h"
 | 
					#include "labwc.h"
 | 
				
			||||||
#include "layers.h"
 | 
					#include "layers.h"
 | 
				
			||||||
#include "menu/menu.h"
 | 
					#include "menu/menu.h"
 | 
				
			||||||
#include "theme/theme.h"
 | 
					#include "theme.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static struct wlr_compositor *compositor;
 | 
					static struct wlr_compositor *compositor;
 | 
				
			||||||
static struct wl_event_source *sighup_source;
 | 
					static struct wl_event_source *sighup_source;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -10,7 +10,7 @@
 | 
				
			||||||
#include "common/log.h"
 | 
					#include "common/log.h"
 | 
				
			||||||
#include "common/string-helpers.h"
 | 
					#include "common/string-helpers.h"
 | 
				
			||||||
#include "common/zfree.h"
 | 
					#include "common/zfree.h"
 | 
				
			||||||
#include "theme/theme.h"
 | 
					#include "theme.h"
 | 
				
			||||||
#include "xbm/xbm.h"
 | 
					#include "xbm/xbm.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static int
 | 
					static int
 | 
				
			||||||
| 
						 | 
					@ -1,4 +0,0 @@
 | 
				
			||||||
labwc_sources += files(
 | 
					 | 
				
			||||||
  'theme.c',
 | 
					 | 
				
			||||||
)
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
| 
						 | 
					@ -10,7 +10,7 @@
 | 
				
			||||||
#include "common/dir.h"
 | 
					#include "common/dir.h"
 | 
				
			||||||
#include "common/grab-file.h"
 | 
					#include "common/grab-file.h"
 | 
				
			||||||
#include "config/rcxml.h"
 | 
					#include "config/rcxml.h"
 | 
				
			||||||
#include "theme/theme.h"
 | 
					#include "theme.h"
 | 
				
			||||||
#include "xbm/parse.h"
 | 
					#include "xbm/parse.h"
 | 
				
			||||||
#include "xbm/xbm.h"
 | 
					#include "xbm/xbm.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue