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

📄 propertyitem.h

📁 LINUX 下以 QT/KDE 写的 SVN 客户端
💻 H
字号:
#ifndef _PROPERTYITEM_H#define _PROPERTYITEM_H#include <klistview.h>class PropertiesDlg;class Propertylist;class PropertyListViewItem:public KListViewItem{    friend class PropertiesDlg;    friend class Propertylist;    public:        static const int _RTTI_ = 1001;        PropertyListViewItem(KListView *parent,const QString&,const QString&);        PropertyListViewItem(KListView *parent);        virtual ~PropertyListViewItem();        const QString&startName()const{return m_startName;}        const QString&startValue()const{return m_startValue;}        const QString&currentName()const{return m_currentName;}        const QString&currentValue()const{return m_currentValue;}        void checkValue();        void checkName();        void deleteIt();        void unDeleteIt();        bool deleted()const{return m_deleted;}        bool different()const;        virtual int rtti()const{return _RTTI_;}       //! Check if a specific property may just internale       /*!        * That means, a property of that may not edit,added or deleted.        *        * This moment it just checks for "svn:special"        * \return true if protected property otherwise false        */       static bool protected_Property(const QString&);    protected:        QString m_currentName,m_startName,m_currentValue,m_startValue;        bool m_deleted;};#endif

⌨️ 快捷键说明

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