diff options
author | Ville Skyttä <ville.skytta@iki.fi> | 2011-10-29 15:50:22 +0300 |
---|---|---|
committer | Ville Skyttä <ville.skytta@iki.fi> | 2011-10-29 15:50:22 +0300 |
commit | fbc4f38c31feba097d62271e8cd45dcf8533e42f (patch) | |
tree | 10e5601f4a62bb5f16b67f7aa4f227621316a221 | |
parent | 3ff65aeb24ed0e24e802e855cbc67d409fdb18c4 (diff) | |
download | vdr-plugin-text2skin-fbc4f38c31feba097d62271e8cd45dcf8533e42f.tar.gz vdr-plugin-text2skin-fbc4f38c31feba097d62271e8cd45dcf8533e42f.tar.bz2 |
Add Emacs mode and indentation settings.
-rw-r--r-- | .dir-locals.el | 2 | ||||
-rw-r--r-- | bitmap.c | 2 | ||||
-rw-r--r-- | bitmap.h | 2 | ||||
-rw-r--r-- | cache.c | 2 | ||||
-rw-r--r-- | cache.h | 2 | ||||
-rw-r--r-- | common.c | 2 | ||||
-rw-r--r-- | common.h | 2 | ||||
-rw-r--r-- | display.c | 2 | ||||
-rw-r--r-- | display.h | 2 | ||||
-rw-r--r-- | file.c | 2 | ||||
-rw-r--r-- | file.h | 2 | ||||
-rw-r--r-- | font.c | 2 | ||||
-rw-r--r-- | font.h | 2 | ||||
-rw-r--r-- | i18n.c | 2 | ||||
-rw-r--r-- | i18n.h | 2 | ||||
-rw-r--r-- | loader.c | 2 | ||||
-rw-r--r-- | loader.h | 2 | ||||
-rw-r--r-- | menu.c | 2 | ||||
-rw-r--r-- | menu.h | 2 | ||||
-rw-r--r-- | quantize.c | 2 | ||||
-rw-r--r-- | quantize.h | 2 | ||||
-rw-r--r-- | render.c | 2 | ||||
-rw-r--r-- | render.h | 2 | ||||
-rw-r--r-- | screen.c | 2 | ||||
-rw-r--r-- | screen.h | 2 | ||||
-rw-r--r-- | scroller.c | 2 | ||||
-rw-r--r-- | scroller.h | 2 | ||||
-rw-r--r-- | setup.c | 2 | ||||
-rw-r--r-- | setup.h | 2 | ||||
-rw-r--r-- | status.c | 2 | ||||
-rw-r--r-- | status.h | 2 | ||||
-rw-r--r-- | text2skin.c | 2 | ||||
-rw-r--r-- | text2skin.h | 2 | ||||
-rw-r--r-- | theme.c | 2 | ||||
-rw-r--r-- | theme.h | 2 | ||||
-rw-r--r-- | xml/display.c | 2 | ||||
-rw-r--r-- | xml/display.h | 2 | ||||
-rw-r--r-- | xml/function.c | 2 | ||||
-rw-r--r-- | xml/function.h | 2 | ||||
-rw-r--r-- | xml/object.c | 2 | ||||
-rw-r--r-- | xml/object.h | 2 | ||||
-rw-r--r-- | xml/parser.c | 2 | ||||
-rw-r--r-- | xml/parser.h | 2 | ||||
-rw-r--r-- | xml/skin.c | 2 | ||||
-rw-r--r-- | xml/skin.h | 2 | ||||
-rw-r--r-- | xml/string.c | 2 | ||||
-rw-r--r-- | xml/string.h | 2 | ||||
-rw-r--r-- | xml/type.c | 2 | ||||
-rw-r--r-- | xml/type.h | 2 | ||||
-rw-r--r-- | xml/xml.c | 2 | ||||
-rw-r--r-- | xml/xml.h | 2 |
51 files changed, 99 insertions, 3 deletions
diff --git a/.dir-locals.el b/.dir-locals.el new file mode 100644 index 0000000..62903e3 --- /dev/null +++ b/.dir-locals.el @@ -0,0 +1,2 @@ +((c++-mode . ((indent-tabs-mode . t) + (c-basic-offset . 8)))) @@ -1,3 +1,5 @@ +// -*- c++ -*- + #include "bitmap.h" #include "setup.h" #include <vdr/tools.h> @@ -1,3 +1,5 @@ +// -*- c++ -*- + #ifndef VDR_TEXT2SKIN_BITMAP_H #define VDR_TEXT2SKIN_BITMAP_H @@ -1 +1,3 @@ +// -*- c++ -*- + #include "cache.h" @@ -1,3 +1,5 @@ +// -*- c++ -*- + #ifndef VDR_TEXT2SKIN_CACHE_HPP #define VDR_TEXT2SKIN_CACHE_HPP @@ -1,3 +1,5 @@ +// -*- c++ -*- + #include "common.h" #include <sstream> #include <vdr/plugin.h> @@ -1,3 +1,5 @@ +// -*- c++ -*- + #ifndef VDR_TEXT2SKIN_COMMON_H #define VDR_TEXT2SKIN_COMMON_H @@ -1,3 +1,5 @@ +// -*- c++ -*- + #include "render.h" #include "loader.h" #include "display.h" @@ -1,3 +1,5 @@ +// -*- c++ -*- + #ifndef VDR_TEXT2SKIN_SKIN_H #define VDR_TEXT2SKIN_SKIN_H @@ -1,3 +1,5 @@ +// -*- c++ -*- + #include "file.h" #include <unistd.h> @@ -1,3 +1,5 @@ +// -*- c++ -*- + #ifndef VDR_TEXT2SKIN_FILE_H #define VDR_TEXT2SKIN_FILE_H @@ -1,3 +1,5 @@ +// -*- c++ -*- + #include "font.h" #include "render.h" #include <vdr/tools.h> @@ -1,3 +1,5 @@ +// -*- c++ -*- + #ifndef VDR_TEXT2SKIN_FONT_H #define VDR_TEXT2SKIN_FONT_H @@ -1,3 +1,5 @@ +// -*- c++ -*- + #include "i18n.h" #include <vdr/config.h> @@ -1,3 +1,5 @@ +// -*- c++ -*- + #ifndef VDR_TEXT2SKIN_I18N_H #define VDR_TEXT2SKIN_I18N_H @@ -1,3 +1,5 @@ +// -*- c++ -*- + #include "loader.h" #include "i18n.h" #include "theme.h" @@ -1,3 +1,5 @@ +// -*- c++ -*- + #ifndef VDR_TEXT2SKIN_LOADER_H #define VDR_TEXT2SKIN_LOADER_H @@ -1,3 +1,5 @@ +// -*- c++ -*- + #include "menu.h" #include "bitmap.h" @@ -1,3 +1,5 @@ +// -*- c++ -*- + #ifndef VDR_TEXT2SKIN_MENU_H #define VDR_TEXT2SKIN_MENU_H @@ -1,3 +1,5 @@ +// -*- c++ -*-
+
#include <stdio.h>
#include <stdlib.h>
@@ -1,3 +1,5 @@ +// -*- c++ -*-
+
#ifndef VDR_GRAPHTFT_QUANTIZE_H
#define VDR_GRAPHTFT_QUANTIZE_H
@@ -1,3 +1,5 @@ +// -*- c++ -*- + #include "render.h" #include "loader.h" #include "i18n.h" @@ -1,3 +1,5 @@ +// -*- c++ -*- + #ifndef VDR_TEXT2SKIN_RENDER_H #define VDR_TEXT2SKIN_RENDER_H @@ -1,3 +1,5 @@ +// -*- c++ -*- + #include "screen.h" cText2SkinScreen::cText2SkinScreen(bool OffScreen): @@ -1,3 +1,5 @@ +// -*- c++ -*- + #ifndef VDR_TEXT2SKIN_SCREEN_H #define VDR_TEXT2SKIN_SCREEN_H @@ -1,3 +1,5 @@ +// -*- c++ -*- + #include "scroller.h" #include "screen.h" #include <vdr/tools.h> @@ -1,3 +1,5 @@ +// -*- c++ -*- + #ifndef VDR_TEXT2SKIN_SCROLLER_H #define VDR_TEXT2SKIN_SCROLLER_H @@ -1,3 +1,5 @@ +// -*- c++ -*- + #include "setup.h" cText2SkinSetup Text2SkinSetup; @@ -1,3 +1,5 @@ +// -*- c++ -*- + #ifndef VDR_TEXT2SKIN_SETUP_H #define VDR_TEXT2SKIN_SETUP_H @@ -1,3 +1,5 @@ +// -*- c++ -*- + #include "status.h" #include "render.h" #include "menu.h" @@ -1,3 +1,5 @@ +// -*- c++ -*- + #ifndef VDR_TEXT2SKIN_STATUS_H #define VDR_TEXT2SKIN_STATUS_H diff --git a/text2skin.c b/text2skin.c index 816c0ef..1ff3abc 100644 --- a/text2skin.c +++ b/text2skin.c @@ -1,4 +1,4 @@ -/* +/* -*- c++ -*- * text2skin.c: A plugin for the Video Disk Recorder * * See the README file for copyright information and how to reach the author. diff --git a/text2skin.h b/text2skin.h index 1052793..c9e9755 100644 --- a/text2skin.h +++ b/text2skin.h @@ -1,3 +1,5 @@ +// -*- c++ -*- + #ifndef VDR_TEXT2SKIN_H #define VDR_TEXT2SKIN_H @@ -1,3 +1,5 @@ +// -*- c++ -*- + #include "theme.h" #include <vdr/osd.h> @@ -1,3 +1,5 @@ +// -*- c++ -*- + #ifndef VDR_TEXT2SKIN_THEME_H #define VDR_TEXT2SKIN_THEME_H diff --git a/xml/display.c b/xml/display.c index 64c9caa..ae4ffa4 100644 --- a/xml/display.c +++ b/xml/display.c @@ -1,3 +1,5 @@ +// -*- c++ -*- + #include "xml/display.h" static const std::string DisplayNames[] = diff --git a/xml/display.h b/xml/display.h index 30531e0..6316adc 100644 --- a/xml/display.h +++ b/xml/display.h @@ -1,3 +1,5 @@ +// -*- c++ -*- + #ifndef VDR_TEXT2SKIN_DISPLAY_H #define VDR_TEXT2SKIN_DISPLAY_H diff --git a/xml/function.c b/xml/function.c index ed48531..c9994e9 100644 --- a/xml/function.c +++ b/xml/function.c @@ -1,3 +1,5 @@ +// -*- c++ -*- + #include "xml/function.h" #include "render.h" #include "bitmap.h" diff --git a/xml/function.h b/xml/function.h index 32bcfc3..889b1e0 100644 --- a/xml/function.h +++ b/xml/function.h @@ -1,3 +1,5 @@ +// -*- c++ -*- + #ifndef VDR_TEXT2SKIN_XML_FUNCTION_H #define VDR_TEXT2SKIN_XML_FUNCTION_H diff --git a/xml/object.c b/xml/object.c index 338856f..02fc3fc 100644 --- a/xml/object.c +++ b/xml/object.c @@ -1,3 +1,5 @@ +// -*- c++ -*- + #include "xml/object.h" #include "render.h" #include "font.h" diff --git a/xml/object.h b/xml/object.h index 4b3ecf3..2343f82 100644 --- a/xml/object.h +++ b/xml/object.h @@ -1,3 +1,5 @@ +// -*- c++ -*- + #ifndef VDR_TEXT2SKIN_XML_OBJECT_H #define VDR_TEXT2SKIN_XML_OBJECT_H diff --git a/xml/parser.c b/xml/parser.c index 1f1d0a0..bbfd09b 100644 --- a/xml/parser.c +++ b/xml/parser.c @@ -1,3 +1,5 @@ +// -*- c++ -*- + #include "xml/parser.h" #include "xml/xml.h" #include "xml/skin.h" diff --git a/xml/parser.h b/xml/parser.h index 03e8f74..c8b8eb7 100644 --- a/xml/parser.h +++ b/xml/parser.h @@ -1,3 +1,5 @@ +// -*- c++ -*- + #ifndef VDR_TEXT2SKIN_PARSER_H #define VDR_TEXT2SKIN_PARSER_H @@ -1,3 +1,5 @@ +// -*- c++ -*- + #include "xml/skin.h" #include "i18n.h" #include <vdr/tools.h> @@ -1,3 +1,5 @@ +// -*- c++ -*- + #ifndef VDR_TEXT2SKIN_XML_SKIN_H #define VDR_TEXT2SKIN_XML_SKIN_H diff --git a/xml/string.c b/xml/string.c index f2e1fc3..230a8f3 100644 --- a/xml/string.c +++ b/xml/string.c @@ -1,3 +1,5 @@ +// -*- c++ -*- + #include "xml/string.h" #include "render.h" diff --git a/xml/string.h b/xml/string.h index df9376a..3fd6361 100644 --- a/xml/string.h +++ b/xml/string.h @@ -1,3 +1,5 @@ +// -*- c++ -*- + #ifndef VDR_TEXT2SKIN_XML_STRING_H #define VDR_TEXT2SKIN_XML_STRING_H @@ -1 +1,3 @@ +// -*- c++ -*- + #include "xml/type.h" @@ -1,3 +1,5 @@ +// -*- c++ -*- + #ifndef VDR_TEXT2SKIN_XML_TYPE_H #define VDR_TEXT2SKIN_XML_TYPE_H @@ -1,4 +1,4 @@ -/* +/* -*- c++ -*- * This module was kindly provided by Clemens Kirchgatterer */ @@ -1,4 +1,4 @@ -/* +/* -*- c++ -*- * This module was kindly provided by Clemens Kirchgatterer */ |