~ubuntu-branches/ubuntu/raring/codeblocks/raring-proposed

« back to all changes in this revision

Viewing changes to src/plugins/contrib/codesnippets/editor/defsext.h

  • Committer: Bazaar Package Importer
  • Author(s): Cosme Domínguez Díaz
  • Date: 2010-08-09 04:38:38 UTC
  • mfrom: (1.1.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20100809043838-a59ygguym4eg0jgw
Tags: 10.05-0ubuntu1
* New upstream release. Closes (LP: #322350)
 - Switch to dpkg-source 3.0 (quilt) format
 - Remove unneeded README.source
 - Add debian/get-source-orig script that removes all
   Windows prebuilt binaries
* Bump Standards-Version to 3.9.1
 - Stop shipping *.la files
* debian/control
 - Add cdbs package as Build-Depend
 - Add libbz2-dev and zlib1g-dev packages as
   Build-Depends (needed by libhelp_plugin.so)
 - Remove dpatch package of Build-Depends
 - Add codeblocks-contrib-debug package
 - Split architecture-independent files of codeblocks
   package in codeblocks-common package
* debian/rules
 - Switch to CDBS rules system
 - Add parallel build support
 - Add a call to debian/get-source-orig script
 - Use lzma compression (saves 23,5 MB of free space)
* debian/patches
 - Refresh 01_codeblocks_plugin_path
 - Add 02_no_Makefiles_in_debian_dir to remove any link
   in codeblocks build system to deleted Makefiles of debian directory
 - Drop 02_ftbfs_gcc44 and 03_ftbfs_glib221 (merged in upstream)
* debian/watch
 - Update to use the new host (berlios.de)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/////////////////////////////////////////////////////////////////////////////
 
2
// Name:        defsext.h extensions
 
3
// Purpose:     wxScintilla test declarations
 
4
// Maintainer:  Otto Wyss
 
5
// Created:     2003-09-01
 
6
// Copyright:   (c) 2004 wxCode
 
7
// Licence:     wxWindows
 
8
//////////////////////////////////////////////////////////////////////////////
 
9
/*
 
10
        This file is part of Code Snippets, a plugin for Code::Blocks
 
11
        Copyright (C) 2006 Arto Jonsson
 
12
        Copyright (C) 2007 Pecan Heber
 
13
 
 
14
        This program is free software; you can redistribute it and/or
 
15
        modify it under the terms of the GNU General Public License
 
16
        as published by the Free Software Foundation; either version 2
 
17
        of the License, or (at your option) any later version.
 
18
 
 
19
        This program is distributed in the hope that it will be useful,
 
20
        but WITHOUT ANY WARRANTY; without even the implied warranty of
 
21
        MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
22
        GNU General Public License for more details.
 
23
 
 
24
        You should have received a copy of the GNU General Public License
 
25
        along with this program; if not, write to the Free Software
 
26
        Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
27
*/
 
28
// RCS-ID: $Id: defsext.h 100 2007-08-24 23:11:03Z Pecan $
 
29
 
 
30
#ifndef _WX_DEFSEXT_H_
 
31
#define _WX_DEFSEXT_H_
 
32
 
 
33
// ----------------------------------------------------------------------------
 
34
// standard IDs
 
35
// ----------------------------------------------------------------------------
 
36
 
 
37
enum {
 
38
    // menu IDs
 
39
    myID_PROPERTIES = wxID_HIGHEST,
 
40
    myID_INDENTINC,
 
41
    myID_INDENTRED,
 
42
    myID_FINDNEXT,
 
43
    myID_FINDPREV,
 
44
    myID_REPLACE,
 
45
    myID_REPLACEALL,
 
46
    myID_REPLACENEXT,
 
47
    myID_BRACEMATCH,
 
48
    myID_GOTO,
 
49
    myID_PAGEACTIVE,
 
50
    myID_DISPLAYEOL,
 
51
    myID_INDENTGUIDE,
 
52
    myID_LINENUMBER,
 
53
    myID_LONGLINEON,
 
54
    myID_WHITESPACE,
 
55
    myID_FOLDTOGGLE,
 
56
    myID_OVERTYPE,
 
57
    myID_READONLY,
 
58
    myID_WRAPMODEON,
 
59
    myID_CHANGECASE,
 
60
    myID_CHANGELOWER,
 
61
    myID_CHANGEUPPER,
 
62
    myID_HILIGHTLANG,
 
63
    myID_HILIGHTFIRST,
 
64
    myID_HILIGHTLAST = myID_HILIGHTFIRST + 99,
 
65
    myID_CONVERTEOL,
 
66
    myID_CONVERTCR,
 
67
    myID_CONVERTCRLF,
 
68
    myID_CONVERTLF,
 
69
    myID_USECHARSET,
 
70
    myID_CHARSETANSI,
 
71
    myID_CHARSETMAC,
 
72
    myID_PAGEPREV,
 
73
    myID_PAGENEXT,
 
74
    myID_SELECTLINE,
 
75
 
 
76
    // other IDs
 
77
    myID_STATUSBAR,
 
78
    myID_TITLEBAR,
 
79
    myID_ABOUTTIMER,
 
80
    myID_UPDATETIMER,
 
81
 
 
82
    // dialog find IDs
 
83
    myID_DLG_FIND_TEXT,
 
84
 
 
85
    // preferences IDs
 
86
    myID_PREFS_LANGUAGE,
 
87
    myID_PREFS_STYLETYPE,
 
88
    myID_PREFS_KEYWORDS,
 
89
};
 
90
 
 
91
// ----------------------------------------------------------------------------
 
92
// global items
 
93
// ----------------------------------------------------------------------------
 
94
 
 
95
#endif // _WX_DEFSEXT_H_
 
96