⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 qheaderview_p.h

📁 qt-x11-opensource-src-4.1.4.tar.gz源码
💻 H
字号:
/******************************************************************************** Copyright (C) 1992-2006 Trolltech ASA. All rights reserved.**** This file is part of the QtGui module of the Qt Toolkit.**** This file may be used under the terms of the GNU General Public** License version 2.0 as published by the Free Software Foundation** and appearing in the file LICENSE.GPL included in the packaging of** this file.  Please review the following information to ensure GNU** General Public Licensing requirements will be met:** http://www.trolltech.com/products/qt/opensource.html**** If you are unsure which license is appropriate for your use, please** review the following information:** http://www.trolltech.com/products/qt/licensing.html or contact the** sales department at sales@trolltech.com.**** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.******************************************************************************/#ifndef QHEADERVIEW_P_H#define QHEADERVIEW_P_H////  W A R N I N G//  -------------//// This file is not part of the Qt API.  It exists purely as an// implementation detail.  This header file may change from version to// version without notice, or even be removed.//// We mean it.//#include "private/qabstractitemview_p.h"#ifndef QT_NO_ITEMVIEWS#include "QtCore/qbitarray.h"#include "QtGui/qapplication.h"#include "QtGui/qlabel.h"class QHeaderViewPrivate: public QAbstractItemViewPrivate{    Q_DECLARE_PUBLIC(QHeaderView)public:    QHeaderViewPrivate()        : state(NoState),          offset(0),          sortIndicatorOrder(Qt::AscendingOrder),          sortIndicatorSection(0),          sortIndicatorShown(false),          lastPos(-1),          firstPos(-1),          section(-1),          target(-1),          pressed(-1),          hover(-1),          movableSections(false),          clickableSections(false),          highlightSelected(false),          stretchLastSection(false),          stretchSections(0),          customSections(0),          sectionIndicatorOffset(0),          sectionIndicator(0),          globalResizeMode(QHeaderView::Interactive) {}    int sectionHandleAt(int position);    void setupSectionIndicator(int section, int position);    void updateSectionIndicator(int section, int position);    void resizeSections(QHeaderView::ResizeMode globalMode, bool useGlobalMode = false);    void _q_sectionsRemoved(const QModelIndex &,int,int);    bool isSectionSelected(int section) const;    inline void prepareSectionSelected()        { if (sectionSelection.count() != sections.count() * 2)            sectionSelection.fill(false, sections.count() * 2);          else sectionSelection.fill(false); }    inline bool reverse() const        { return q_func()->isRightToLeft() && orientation == Qt::Horizontal; }    inline int logicalIndex(int visualIndex) const        { return logicalIndices.isEmpty() ? visualIndex : logicalIndices.at(visualIndex); }    inline bool hasAutoResizeSections() const        { return stretchSections || stretchLastSection;/* || customSections;*/ }    inline void invalidateCachedSizeHint() const        { cachedSizeHint = QSize(); }    enum State { NoState, ResizeSection, MoveSection } state;    int offset;    Qt::Orientation orientation;    Qt::SortOrder sortIndicatorOrder;    int sortIndicatorSection;    bool sortIndicatorShown;    struct HeaderSection {        int position;        uint hidden : 1;        QHeaderView::ResizeMode mode;    };    void clear() {        sections.clear();        visualIndices.clear();        logicalIndices.clear();        sectionSelection.clear();        hiddenSectionSize.clear();        cachedSizeHint = QSize();    }    mutable QVector<HeaderSection> sections; // HeaderSection = sections.at(visualIndex)    mutable QVector<int> visualIndices; // visualIndex = visualIndices.at(logicalIndex)    mutable QVector<int> logicalIndices; // logicalIndex = row or column in the model    mutable QBitArray sectionSelection;    mutable QHash<int, int> hiddenSectionSize; // from logical index to section size    mutable QSize cachedSizeHint;    int lastPos;    int firstPos;    int section; // used for resizing and moving sections    int target;    int pressed;    int hover;    bool movableSections;    bool clickableSections;    bool highlightSelected;    bool stretchLastSection;    int stretchSections;    int customSections;    int sectionIndicatorOffset;    int defaultSectionSize;    Qt::Alignment defaultAlignment;    QLabel *sectionIndicator;    QStyleOptionHeader getStyleOption() const;    QHeaderView::ResizeMode globalResizeMode;};#endif // QT_NO_ITEMVIEWS#endif // QHEADERVIEW_P_H

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -