Giter Site home page Giter Site logo

alexpux / qadvanceditemviews Goto Github PK

View Code? Open in Web Editor NEW
32.0 2.0 11.0 2.74 MB

QAdvancedItemViews (QAIV) extends the capabilities of the Qt classes QTableView and QSortFilterProxyModel

Home Page: https://sourceforge.net/projects/qadvanceditemviews/

License: Other

QMake 2.27% C++ 97.51% C 0.22%

qadvanceditemviews's Introduction

QAdvancedItemViews (QAIV)

Introducion

conditional example1 example5 grouping1

QAdvancedItemViews (QAIV) extends the capabilities of the Qt classes QTableView and QSortFilterProxyModel. E.g. QAdvancedTableView supports multicolumn filtering and includes a header view alowing users to create, modify and delete filter. Additional utility classes provide proxy models for conditional decorations, groupings and a lot more.

Web Resources

Initially developed by Martin Hoppe ([email protected])

qadvanceditemviews's People

Contributors

alexpux avatar pvanek avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

qadvanceditemviews's Issues

No Qt6 support

QAdvancedItemViews is not compatible with Qt6, Building the library with MinGW and Qt 6.5.3 causes the following errors:

In file included from ..\..\..\src\qaiv\qaivlib\qregexpfilter.cpp:22:
..\..\..\src\qaiv\qaivlib\qregexpfilter.h:54:5: error: 'QRegExp' does not name a type
   54 |     QRegExp regExp() const;
      |     ^~~~~~~
In file included from ..\..\..\src\qaiv\qaivlib\qregexpfilter.cpp:24:
../../../src/qaiv/qaivlib/qregexpfilter_p.h:46:14: error: invalid use of incomplete type 'class QRegExp'
   46 |     QRegExp::PatternSyntax patternSyntax() const;
      |              ^~~~~~~~~~~~~
../../../src/qaiv/qaivlib/qregexpfilter_p.h:30:7: note: forward declaration of 'class QRegExp'
   30 | class QRegExp;
      |       ^~~~~~~
../../../src/qaiv/qaivlib/qregexpfilter_p.h:52:27: error: 'QRegExp::PatternSyntax' has not been declared
   52 |     void setPatternSyntax(QRegExp::PatternSyntax patternSyntax);
      |                           ^~~~~~~
..\..\..\src\qaiv\qaivlib\qregexpfilter.cpp:85:10: error: invalid use of incomplete type 'class QRegExp'
   85 | QRegExp::PatternSyntax QRegExpFilterEditor::patternSyntax() const
      |          ^~~~~~~~~~~~~
In file included from ..\..\..\src\qaiv\qaivlib\qregexpfilter.cpp:24:
../../../src/qaiv/qaivlib/qregexpfilter_p.h:30:7: note: forward declaration of 'class QRegExp'
   30 | class QRegExp;
      |       ^~~~~~~
..\..\..\src\qaiv\qaivlib\qregexpfilter.cpp:110:6: error: variable or field 'setPatternSyntax' declared void
  110 | void QRegExpFilterEditor::setPatternSyntax(QRegExp::PatternSyntax patternSyntax)
      |      ^~~~~~~~~~~~~~~~~~~
..\..\..\src\qaiv\qaivlib\qregexpfilter.cpp:110:53: error: incomplete type 'QRegExp' used in nested name specifier
  110 | void QRegExpFilterEditor::setPatternSyntax(QRegExp::PatternSyntax patternSyntax)
      |                                                     ^~~~~~~~~~~~~
..\..\..\src\qaiv\qaivlib\qregexpfilter.cpp: In constructor 'QRegExpFilter::QRegExpFilter(int, int)':
..\..\..\src\qaiv\qaivlib\qregexpfilter.cpp:120:43: error: incomplete type 'QRegExp' used in nested name specifier
  120 |     setProperty("patternSyntax", QRegExp::RegExp);
      |                                           ^~~~~~
..\..\..\src\qaiv\qaivlib\qregexpfilter.cpp: In member function 'virtual bool QRegExpFilter::matches(const QVariant&, int) const':
..\..\..\src\qaiv\qaivlib\qregexpfilter.cpp:141:20: error: variable 'QRegExp regExp' has initializer but incomplete type
  141 |     QRegExp regExp(property("pattern").toString(), static_cast<Qt::CaseSensitivity>(property("caseSensitivity").toInt()), static_cast<QRegExp::PatternSyntax>(property("patternSyntax").toInt()));
      |                    ^~~~~~~~
..\..\..\src\qaiv\qaivlib\qregexpfilter.cpp:141:144: error: invalid use of incomplete type 'class QRegExp'
  141 |     QRegExp regExp(property("pattern").toString(), static_cast<Qt::CaseSensitivity>(property("caseSensitivity").toInt()), static_cast<QRegExp::PatternSyntax>(property("patternSyntax").toInt()));
      |                                                                                                                                                ^~~~~~~~~~~~~
In file included from ..\..\..\src\qaiv\qaivlib\qregexpfilter.cpp:24:
../../../src/qaiv/qaivlib/qregexpfilter_p.h:30:7: note: forward declaration of 'class QRegExp'
   30 | class QRegExp;
      |       ^~~~~~~
..\..\..\src\qaiv\qaivlib\qregexpfilter.cpp: In member function 'virtual void QRegExpFilter::setEditorData(QWidget*, const QModelIndex&)':
..\..\..\src\qaiv\qaivlib\qregexpfilter.cpp:154:50: error: invalid use of incomplete type 'class QRegExp'
  154 |         w->setPatternSyntax(static_cast<QRegExp::PatternSyntax>(property("patternSyntax").toInt()));
      |                                                  ^~~~~~~~~~~~~
In file included from ..\..\..\src\qaiv\qaivlib\qregexpfilter.cpp:24:
../../../src/qaiv/qaivlib/qregexpfilter_p.h:30:7: note: forward declaration of 'class QRegExp'
   30 | class QRegExp;
      |       ^~~~~~~
..\..\..\src\qaiv\qaivlib\qregexpfilter.cpp: In member function 'virtual void QRegExpFilter::setModelData(QWidget*, QAbstractItemModel*, const QModelIndex&)':
..\..\..\src\qaiv\qaivlib\qregexpfilter.cpp:165:33: error: 'class QRegExpFilterEditor' has no member named 'patternSyntax'; did you mean 'setPatternSyntax'?
  165 |         p["patternSyntax"] = w->patternSyntax();
      |                                 ^~~~~~~~~~~~~
      |                                 setPatternSyntax
..\..\..\src\qaiv\qaivlib\qregexpfilter.cpp: In function 'QDebug operator<<(QDebug, const QRegExpFilter&)':
..\..\..\src\qaiv\qaivlib\qregexpfilter.cpp:185:50: error: invalid use of incomplete type 'class QRegExp'
  185 |       << "patternSyntax" << static_cast<QRegExp::PatternSyntax>(f.property("patternSyntax").toInt())
      |                                                  ^~~~~~~~~~~~~
In file included from ..\..\..\src\qaiv\qaivlib\qregexpfilter.cpp:24:
../../../src/qaiv/qaivlib/qregexpfilter_p.h:30:7: note: forward declaration of 'class QRegExp'
   30 | class QRegExp;
      |       ^~~~~~~

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.