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

📄 bcdetailedlistview.h

📁 Bookcase 是一个用于KDE的个人的书籍管理。它使用XML文件存储格式
💻 H
字号:
/***************************************************************************                                bcdetailedlistview.h                             -------------------    begin                : Tue Sep 4 2001    copyright            : (C) 2001 by Robby Stephenson    email                : robby@periapsis.org ***************************************************************************//*************************************************************************** *                                                                         * *   This program is free software; you can redistribute it and/or modify  * *   it under the terms of version 2 of the GNU General Public License as  * *   published by the Free Software Foundation;                            * *                                                                         * ***************************************************************************/#ifndef BCDETAILEDLISTVIEW_H#define BCDETAILEDLISTVIEW_Hclass BCUnit;class BCUnitItem;class BCCollection;class BookcaseDoc;#include <klistview.h>#include <kpopupmenu.h>#include <qpoint.h>#include <qstringlist.h>#include <qmap.h>#include <qpixmap.h>/** * The BCDetailedListView class shows detailed information about units in the * collection. * * @author Robby Stephenson * @version $Id: bcdetailedlistview.h,v 1.31 2003/03/10 02:13:49 robby Exp $ */class BCDetailedListView : public KListView {Q_OBJECTpublic:  /**   * The constructor initializes the popup menu, but no columns are inserted.   *   * @param doc A pointer to the BookcaseDoc, used for filling out headers   * @param parent A pointer to the parent widget   * @param name The widget name   */  BCDetailedListView(BookcaseDoc* doc, QWidget* parent, const char* name=0);  ~BCDetailedListView();    /**   * Returns the names of the attributes being shown. This is NOT the text in the   * header; that is the attribute title.   *   * @return The list of column names   */  const QStringList& columnNames() const;  bool eventFilter(QObject* obj, QEvent* ev);  /**   * Rearranges the columns, given the names of the attributes.   *   * @param colNames A list of the attribute names in the order to be shown   */  void setColumns(BCCollection* coll, const QStringList& colNames);  public slots:  /**   */  void slotAddCollection(BCCollection* coll);  /**   * Resets the list view, clearing and deleting all items.   */  void slotReset();  /**   * Adds a new list item showing the details for a unit.   *   * @param unit A pointer to the unit   */  void slotAddItem(BCUnit* unit);  /**   * Modifies any item which refers to a unit, resetting the column contents.   *   * @param unit A pointer to the unit   */  void slotModifyItem(BCUnit* unit);  /**   * Removes any item which refers to a certain unit.   *   * @param unit A pointer to the unit   */  void slotRemoveItem(BCUnit* unit);  /**   * Removes all item which refers to a unit within a collection.   *   * @param coll A pointer to the collection   */  void slotRemoveItem(BCCollection* coll);  /**   * Selects the item which refers to a certain unit.   *   * @param unit A pointer to the unit   */  void slotSetSelected(BCUnit* unit);  /**   * Handles emitting the signal indicating a desire to delete the unit attached   * to the current list item.   */  void slotHandleDelete();protected:  /**   * A helper method to populate an item. The column text is initialized by pulling   * the contents from the unit pointer of the item, so it should properly be set   * before this method is called.   *   * @param item A pointer to the item   */  void populateItem(BCUnitItem* item);  /**   * A helper method to locate any item which refers to a certain unit. If none   * is found, a NULL pointer is returned.   *   * @param unit A pointer to the unit   * @return A pointer to the item   */  BCUnitItem* const locateItem(BCUnit* unit);protected slots:  /**   * Handles the appearance of the popup menu.   *   * @param item A pointer to the list item underneath the mouse   * @param point The location point   * @param col The column number, not currently used   */  void slotRMB(QListViewItem* item, const QPoint& point, int col);  /**   * Handles everything when an item is selected. The proper signal is emitted.   *   * @param item The selected item   */  void slotSelected(QListViewItem* item);  /**   * Clears the selection.   */  void slotClearSelection();  void slotHeaderMenuActivated(int id);signals:  /**   * Signals that the selection has been cleared.   */  void signalClear();  /**   * Signals a unit has been selected. Only emitted when selection changed.   *   * @param unit A pointer to the unit to which the selected item refers   */  void signalUnitSelected(BCUnit* unit);  /**   * Signals a desire to delete a unit.   *   * @param unit A pointer to the unit   */  void signalDeleteUnit(BCUnit* unit);private:  BookcaseDoc* m_doc;  KPopupMenu* m_itemMenu;  KPopupMenu* m_headerMenu;  QMap<int, QString> m_columnMap;  QStringList m_colNames;  QPixmap m_bookPix;  QPixmap m_checkPix;};#endif

⌨️ 快捷键说明

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