editors/qeditor/ada_colorizer.h
Go to the documentation of this file.00001 /* $Id: ada_colorizer.h,v 1.1 2003/05/02 18:43:36 okellogg Exp $ 00002 * Copyright (C) 2003 Oliver Kellogg 00003 * okellogg@users.sourceforge.net 00004 * 00005 * This program is free software; you can redistribute it and/or modify 00006 * it under the terms of the GNU General Public License as published by 00007 * the Free Software Foundation; either version 2 of the License, or 00008 * (at your option) any later version. 00009 */ 00010 #ifndef ADA_COLORIZER_H 00011 #define ADA_COLORIZER_H 00012 00013 #include "qsourcecolorizer.h" 00014 00015 // class QTextParagraph; 00016 00017 class AdaColorizer: public QSourceColorizer 00018 { 00019 public: 00020 AdaColorizer (QEditor *); 00021 virtual ~AdaColorizer (); 00022 00023 int computeLevel (QTextParagraph* parag, int startLevel); 00024 }; 00025 00026 #endif