Eneboo - Documentación para desarrolladores
src/flbase/FLTable.h
Ir a la documentación de este archivo.
00001 /***************************************************************************
00002  FLTable.h
00003  -------------------
00004  begin                : jue abr 23 2009
00005  copyright            : (C) 2001-2009 by InfoSiAL S.L.
00006  email                : mail@infosial.com
00007  ***************************************************************************/
00008 /***************************************************************************
00009  *   This program is free software; you can redistribute it and/or modify  *
00010  *   it under the terms of the GNU General Public License as published by  *
00011  *   the Free Software Foundation; version 2 of the License.               *
00012  ***************************************************************************/
00013 /***************************************************************************
00014  Este  programa es software libre. Puede redistribuirlo y/o modificarlo
00015  bajo  los  términos  de  la  Licencia  Pública General de GNU   en  su
00016  versión 2, publicada  por  la  Free  Software Foundation.
00017  ***************************************************************************/
00018 
00019 #ifndef FLTABLE_H
00020 #define FLTABLE_H
00021 
00022 #include <qtable.h>
00023 #include <qpainter.h>
00024 #include <qcolor.h>
00025 #include <qmap.h>
00026 
00033 class FL_EXPORT FLTable: public QTable {
00034 
00035   Q_OBJECT
00036 
00037 public:
00038 
00042   FLTable( QWidget * parent = 0, const char * name = 0 );
00043 
00047   void setCellBackgroundColor( int row, int col, const QColor & color );
00048 
00052   void setCellAlignment( int row, int col, const int a);
00053 
00054 protected:
00055 
00059   void paintCell( QPainter * p, int row, int col, const QRect & cr, bool selected, const QColorGroup & cg );
00060 
00061 private:
00062 
00066   QMap<QString, QColor> cellBgColors_;
00067 
00071   QMap<QString, int> cellAlignments_;
00072 };
00073 
00074 #endif
 Todo Clases Namespaces Archivos Funciones Variables 'typedefs' Enumeraciones Valores de enumeraciones Propiedades Amigas 'defines'