segmenttip.h

来自「LINUX 下, 以 QT/KDE 写的档案管理员」· C头文件 代码 · 共 34 行

H
34
字号
// Author: Max Howell <max.howell@methylblue.com>, (C) 2004// Copyright: See COPYING file that comes with this distribution#ifndef SEGMENTTIP_H#define SEGMENTTIP_H#include <kpixmap.h>#include <qwidget.h>class File;class Directory;namespace RadialMap{    class SegmentTip : public QWidget    {    public:        SegmentTip( uint );        void updateTip( const File*, const Directory* );        void moveto( QPoint, const QWidget&, bool );    private:        virtual bool eventFilter( QObject*, QEvent* );        virtual bool event( QEvent* );        uint    m_cursorHeight;        KPixmap m_pixmap;        QString m_text;    };}#endif

⌨️ 快捷键说明

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