/usr/include/klftools/klfpixmapbutton.h is in libklatexformula4-dev 4.0.0-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 | /***************************************************************************
* file klfpixmapbutton.h
* This file is part of the KLatexFormula Project.
* Copyright (C) 2011 by Philippe Faist
* philippe.faist at bluewin.ch
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
/* $Id: klfpixmapbutton.h 996 2017-01-15 09:38:25Z phfaist $ */
#ifndef KLFPIXMAPBUTTON_H
#define KLFPIXMAPBUTTON_H
#include <QPushButton>
#include <QPixmap>
#include <klfdefs.h>
/** A button that displays a pixmap */
class KLF_EXPORT KLFPixmapButton : public QPushButton
{
Q_OBJECT
public:
Q_PROPERTY(QPixmap pixmap READ pixmap WRITE setPixmap USER true)
Q_PROPERTY(int pixmapMargin READ pixmapMargin WRITE setPixmapMargin)
Q_PROPERTY(float pixXAlignFactor READ pixXAlignFactor WRITE setPixXAlignFactor)
Q_PROPERTY(float pixYAlignFactor READ pixYAlignFactor WRITE setPixYAlignFactor)
Q_PROPERTY(float pixmapScale READ pixmapScale WRITE setPixmapScale)
KLFPixmapButton(const QPixmap& pix, QWidget *parent = 0);
virtual ~KLFPixmapButton() { }
virtual QSize minimumSizeHint() const;
virtual QSize sizeHint() const;
virtual QPixmap pixmap() const { return _pix; }
virtual int pixmapMargin() const { return _pixmargin; }
virtual float pixXAlignFactor() const { return _xalignfactor; }
virtual float pixYAlignFactor() const { return _yalignfactor; }
virtual float pixmapScale() const { return _pixscale; }
public slots:
virtual void setPixmap(const QPixmap& pix) { _pix = pix; }
virtual void setPixmapMargin(int pixels) { _pixmargin = pixels; }
virtual void setPixXAlignFactor(float xalignfactor) { _xalignfactor = xalignfactor; }
virtual void setPixYAlignFactor(float yalignfactor) { _yalignfactor = yalignfactor; }
virtual void setPixmapScale(float x) { _pixscale = x; }
protected:
virtual void paintEvent(QPaintEvent *event);
private:
QPixmap _pix;
int _pixmargin;
float _xalignfactor, _yalignfactor;
float _pixscale;
};
#endif
|