~ubuntu-branches/ubuntu/precise/koffice/precise

« back to all changes in this revision

Viewing changes to kexi/main/kexibrowser_p.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2006-04-20 21:38:53 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20060420213853-j5lxluqvymxt2zny
Tags: 1:1.5.0-0ubuntu2
UbuntuĀ uploadĀ 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* This file is part of the KDE project
 
2
   Copyright (C) 2002, 2003 Lucijan Busch <lucijan@gmx.at>
 
3
   Copyright (C) 2003-2005 Jaroslaw Staniek <js@iidea.pl>
 
4
 
 
5
   This library is free software; you can redistribute it and/or
 
6
   modify it under the terms of the GNU Library General Public
 
7
   License as published by the Free Software Foundation; either
 
8
   version 2 of the License, or (at your option) any later version.
 
9
 
 
10
   This library is distributed in the hope that it will be useful,
 
11
   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
13
   Library General Public License for more details.
 
14
 
 
15
   You should have received a copy of the GNU Library General Public License
 
16
   along with this library; see the file COPYING.LIB.  If not, write to
 
17
   the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 
18
 * Boston, MA 02110-1301, USA.
 
19
*/
 
20
 
 
21
#ifndef KEXIBROWSER_P_H
 
22
#define KEXIBROWSER_P_H
 
23
 
 
24
#include <klistview.h>
 
25
 
 
26
/*! @internal */
 
27
class KexiBrowserListView : public KListView
 
28
{
 
29
        Q_OBJECT
 
30
        public:
 
31
                KexiBrowserListView(QWidget *parent);
 
32
                ~KexiBrowserListView();
 
33
                
 
34
                virtual bool isExecuteArea( const QPoint& point );
 
35
 
 
36
                bool nameEndsWithAsterisk : 1;
 
37
                bool enableExecuteArea : 1; //!< used in isExecuteArea()
 
38
        public slots:
 
39
                virtual void rename(QListViewItem *item, int c);
 
40
        protected:
 
41
};
 
42
 
 
43
#endif