2013-08-28 00:44:27 +00:00
|
|
|
//
|
|
|
|
// Copyright (c) 1990-2011, Scientific Toolworks, Inc.
|
|
|
|
//
|
|
|
|
// The License.txt file describes the conditions under which this software may be distributed.
|
|
|
|
//
|
|
|
|
// Author: Jason Haslam
|
|
|
|
//
|
|
|
|
// Additions Copyright (c) 2011 Archaeopteryx Software, Inc. d/b/a Wingware
|
|
|
|
// Scintilla platform layer for Qt
|
|
|
|
|
2019-05-04 18:14:48 +00:00
|
|
|
#include <cstdio>
|
|
|
|
|
2013-08-28 00:44:27 +00:00
|
|
|
#include "PlatQt.h"
|
|
|
|
#include "Scintilla.h"
|
2019-05-04 18:14:48 +00:00
|
|
|
#include "UniConversion.h"
|
|
|
|
#include "DBCS.h"
|
2013-08-28 00:44:27 +00:00
|
|
|
#include "FontQuality.h"
|
|
|
|
|
|
|
|
#include <QApplication>
|
|
|
|
#include <QFont>
|
|
|
|
#include <QColor>
|
|
|
|
#include <QRect>
|
|
|
|
#include <QPaintDevice>
|
|
|
|
#include <QPaintEngine>
|
|
|
|
#include <QWidget>
|
|
|
|
#include <QPixmap>
|
|
|
|
#include <QPainter>
|
|
|
|
#include <QMenu>
|
|
|
|
#include <QAction>
|
|
|
|
#include <QTime>
|
|
|
|
#include <QMessageBox>
|
|
|
|
#include <QTextCodec>
|
|
|
|
#include <QListWidget>
|
|
|
|
#include <QVarLengthArray>
|
|
|
|
#include <QScrollBar>
|
|
|
|
#include <QDesktopWidget>
|
|
|
|
#include <QTextLayout>
|
|
|
|
#include <QTextLine>
|
|
|
|
#include <QLibrary>
|
|
|
|
|
|
|
|
namespace Scintilla {
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
|
|
|
// Convert from a Scintilla characterSet value to a Qt codec name.
|
|
|
|
const char *CharacterSetID(int characterSet)
|
|
|
|
{
|
|
|
|
switch (characterSet) {
|
|
|
|
//case SC_CHARSET_ANSI:
|
|
|
|
// return "";
|
|
|
|
case SC_CHARSET_DEFAULT:
|
|
|
|
return "ISO 8859-1";
|
|
|
|
case SC_CHARSET_BALTIC:
|
|
|
|
return "ISO 8859-13";
|
|
|
|
case SC_CHARSET_CHINESEBIG5:
|
|
|
|
return "Big5";
|
|
|
|
case SC_CHARSET_EASTEUROPE:
|
|
|
|
return "ISO 8859-2";
|
|
|
|
case SC_CHARSET_GB2312:
|
|
|
|
return "GB18030-0";
|
|
|
|
case SC_CHARSET_GREEK:
|
|
|
|
return "ISO 8859-7";
|
|
|
|
case SC_CHARSET_HANGUL:
|
|
|
|
return "CP949";
|
|
|
|
case SC_CHARSET_MAC:
|
|
|
|
return "Apple Roman";
|
|
|
|
//case SC_CHARSET_OEM:
|
|
|
|
// return "ASCII";
|
|
|
|
case SC_CHARSET_RUSSIAN:
|
|
|
|
return "KOI8-R";
|
|
|
|
case SC_CHARSET_CYRILLIC:
|
|
|
|
return "Windows-1251";
|
|
|
|
case SC_CHARSET_SHIFTJIS:
|
|
|
|
return "Shift-JIS";
|
|
|
|
//case SC_CHARSET_SYMBOL:
|
|
|
|
// return "";
|
|
|
|
case SC_CHARSET_TURKISH:
|
|
|
|
return "ISO 8859-9";
|
|
|
|
//case SC_CHARSET_JOHAB:
|
|
|
|
// return "CP1361";
|
|
|
|
case SC_CHARSET_HEBREW:
|
|
|
|
return "ISO 8859-8";
|
|
|
|
case SC_CHARSET_ARABIC:
|
|
|
|
return "ISO 8859-6";
|
|
|
|
case SC_CHARSET_VIETNAMESE:
|
|
|
|
return "Windows-1258";
|
|
|
|
case SC_CHARSET_THAI:
|
|
|
|
return "TIS-620";
|
|
|
|
case SC_CHARSET_8859_15:
|
|
|
|
return "ISO 8859-15";
|
|
|
|
default:
|
|
|
|
return "ISO 8859-1";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-04 18:14:48 +00:00
|
|
|
QString UnicodeFromText(QTextCodec *codec, std::string_view text) {
|
|
|
|
return codec->toUnicode(text.data(), static_cast<int>(text.length()));
|
|
|
|
}
|
|
|
|
|
2013-08-28 00:44:27 +00:00
|
|
|
class FontAndCharacterSet {
|
|
|
|
public:
|
|
|
|
int characterSet;
|
|
|
|
QFont *pfont;
|
|
|
|
FontAndCharacterSet(int characterSet_, QFont *pfont):
|
|
|
|
characterSet(characterSet_), pfont(pfont) {
|
|
|
|
}
|
|
|
|
~FontAndCharacterSet() {
|
|
|
|
delete pfont;
|
2019-05-04 18:14:48 +00:00
|
|
|
pfont = nullptr;
|
2013-08-28 00:44:27 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
static int FontCharacterSet(Font &f)
|
|
|
|
{
|
|
|
|
return reinterpret_cast<FontAndCharacterSet *>(f.GetID())->characterSet;
|
|
|
|
}
|
|
|
|
|
|
|
|
static QFont *FontPointer(Font &f)
|
|
|
|
{
|
|
|
|
return reinterpret_cast<FontAndCharacterSet *>(f.GetID())->pfont;
|
|
|
|
}
|
2019-05-04 18:14:48 +00:00
|
|
|
Font::Font() noexcept : fid(nullptr) {}
|
2013-08-28 00:44:27 +00:00
|
|
|
Font::~Font()
|
|
|
|
{
|
|
|
|
delete reinterpret_cast<FontAndCharacterSet *>(fid);
|
2019-05-04 18:14:48 +00:00
|
|
|
fid = nullptr;
|
2013-08-28 00:44:27 +00:00
|
|
|
}
|
|
|
|
static QFont::StyleStrategy ChooseStrategy(int eff)
|
|
|
|
{
|
|
|
|
switch (eff) {
|
|
|
|
case SC_EFF_QUALITY_DEFAULT: return QFont::PreferDefault;
|
|
|
|
case SC_EFF_QUALITY_NON_ANTIALIASED: return QFont::NoAntialias;
|
|
|
|
case SC_EFF_QUALITY_ANTIALIASED: return QFont::PreferAntialias;
|
|
|
|
case SC_EFF_QUALITY_LCD_OPTIMIZED: return QFont::PreferAntialias;
|
|
|
|
default: return QFont::PreferDefault;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Font::Create(const FontParameters &fp)
|
|
|
|
{
|
|
|
|
Release();
|
|
|
|
|
|
|
|
QFont *font = new QFont;
|
|
|
|
font->setStyleStrategy(ChooseStrategy(fp.extraFontFlag));
|
|
|
|
font->setFamily(QString::fromUtf8(fp.faceName));
|
|
|
|
font->setPointSize(fp.size);
|
|
|
|
font->setBold(fp.weight > 500);
|
|
|
|
font->setItalic(fp.italic);
|
|
|
|
|
|
|
|
fid = new FontAndCharacterSet(fp.characterSet, font);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Font::Release()
|
|
|
|
{
|
|
|
|
if (fid)
|
|
|
|
delete reinterpret_cast<FontAndCharacterSet *>(fid);
|
2019-05-04 18:14:48 +00:00
|
|
|
fid = nullptr;
|
2013-08-28 00:44:27 +00:00
|
|
|
}
|
|
|
|
SurfaceImpl::SurfaceImpl()
|
2019-05-04 18:14:48 +00:00
|
|
|
: device(nullptr), painter(nullptr), deviceOwned(false), painterOwned(false), x(0), y(0),
|
|
|
|
unicodeMode(false), codePage(0), codecName(nullptr), codec(nullptr)
|
2013-08-28 00:44:27 +00:00
|
|
|
{}
|
|
|
|
SurfaceImpl::~SurfaceImpl()
|
|
|
|
{
|
2019-05-04 18:14:48 +00:00
|
|
|
Clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SurfaceImpl::Clear()
|
|
|
|
{
|
|
|
|
if (painterOwned && painter) {
|
|
|
|
delete painter;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (deviceOwned && device) {
|
|
|
|
delete device;
|
|
|
|
}
|
|
|
|
device = nullptr;
|
|
|
|
painter = nullptr;
|
|
|
|
deviceOwned = false;
|
|
|
|
painterOwned = false;
|
2013-08-28 00:44:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SurfaceImpl::Init(WindowID wid)
|
|
|
|
{
|
|
|
|
Release();
|
|
|
|
device = static_cast<QWidget *>(wid);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SurfaceImpl::Init(SurfaceID sid, WindowID /*wid*/)
|
|
|
|
{
|
|
|
|
Release();
|
|
|
|
device = static_cast<QPaintDevice *>(sid);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SurfaceImpl::InitPixMap(int width,
|
|
|
|
int height,
|
2015-06-07 21:19:26 +00:00
|
|
|
Surface *surface,
|
2013-08-28 00:44:27 +00:00
|
|
|
WindowID /*wid*/)
|
|
|
|
{
|
|
|
|
Release();
|
|
|
|
if (width < 1) width = 1;
|
|
|
|
if (height < 1) height = 1;
|
|
|
|
deviceOwned = true;
|
|
|
|
device = new QPixmap(width, height);
|
2015-06-07 21:19:26 +00:00
|
|
|
SurfaceImpl *psurfOther = static_cast<SurfaceImpl *>(surface);
|
|
|
|
SetUnicodeMode(psurfOther->unicodeMode);
|
|
|
|
SetDBCSMode(psurfOther->codePage);
|
2013-08-28 00:44:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SurfaceImpl::Release()
|
|
|
|
{
|
2019-05-04 18:14:48 +00:00
|
|
|
Clear();
|
2013-08-28 00:44:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool SurfaceImpl::Initialised()
|
|
|
|
{
|
|
|
|
return device != 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SurfaceImpl::PenColour(ColourDesired fore)
|
|
|
|
{
|
|
|
|
QPen penOutline(QColorFromCA(fore));
|
|
|
|
penOutline.setCapStyle(Qt::FlatCap);
|
|
|
|
GetPainter()->setPen(penOutline);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SurfaceImpl::BrushColour(ColourDesired back)
|
|
|
|
{
|
|
|
|
GetPainter()->setBrush(QBrush(QColorFromCA(back)));
|
|
|
|
}
|
|
|
|
|
|
|
|
void SurfaceImpl::SetCodec(Font &font)
|
|
|
|
{
|
|
|
|
if (font.GetID()) {
|
|
|
|
const char *csid = "UTF-8";
|
|
|
|
if (!unicodeMode)
|
|
|
|
csid = CharacterSetID(FontCharacterSet(font));
|
|
|
|
if (csid != codecName) {
|
|
|
|
codecName = csid;
|
|
|
|
codec = QTextCodec::codecForName(csid);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SurfaceImpl::SetFont(Font &font)
|
|
|
|
{
|
|
|
|
if (font.GetID()) {
|
|
|
|
GetPainter()->setFont(*FontPointer(font));
|
|
|
|
SetCodec(font);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int SurfaceImpl::LogPixelsY()
|
|
|
|
{
|
|
|
|
return device->logicalDpiY();
|
|
|
|
}
|
|
|
|
|
|
|
|
int SurfaceImpl::DeviceHeightFont(int points)
|
|
|
|
{
|
|
|
|
return points;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SurfaceImpl::MoveTo(int x_, int y_)
|
|
|
|
{
|
|
|
|
x = x_;
|
|
|
|
y = y_;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SurfaceImpl::LineTo(int x_, int y_)
|
|
|
|
{
|
|
|
|
QLineF line(x, y, x_, y_);
|
|
|
|
GetPainter()->drawLine(line);
|
|
|
|
x = x_;
|
|
|
|
y = y_;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SurfaceImpl::Polygon(Point *pts,
|
2019-05-04 18:14:48 +00:00
|
|
|
size_t npts,
|
2013-08-28 00:44:27 +00:00
|
|
|
ColourDesired fore,
|
|
|
|
ColourDesired back)
|
|
|
|
{
|
|
|
|
PenColour(fore);
|
|
|
|
BrushColour(back);
|
|
|
|
|
2019-05-04 18:14:48 +00:00
|
|
|
std::vector<QPoint> qpts(npts);
|
|
|
|
for (size_t i = 0; i < npts; i++) {
|
2013-08-28 00:44:27 +00:00
|
|
|
qpts[i] = QPoint(pts[i].x, pts[i].y);
|
|
|
|
}
|
|
|
|
|
2019-05-04 18:14:48 +00:00
|
|
|
GetPainter()->drawPolygon(&qpts[0], static_cast<int>(npts));
|
2013-08-28 00:44:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SurfaceImpl::RectangleDraw(PRectangle rc,
|
|
|
|
ColourDesired fore,
|
|
|
|
ColourDesired back)
|
|
|
|
{
|
|
|
|
PenColour(fore);
|
|
|
|
BrushColour(back);
|
2015-06-07 21:19:26 +00:00
|
|
|
QRectF rect(rc.left, rc.top, rc.Width() - 1, rc.Height() - 1);
|
2013-08-28 00:44:27 +00:00
|
|
|
GetPainter()->drawRect(rect);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SurfaceImpl::FillRectangle(PRectangle rc, ColourDesired back)
|
|
|
|
{
|
2015-06-07 21:19:26 +00:00
|
|
|
GetPainter()->fillRect(QRectFFromPRect(rc), QColorFromCA(back));
|
2013-08-28 00:44:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SurfaceImpl::FillRectangle(PRectangle rc, Surface &surfacePattern)
|
|
|
|
{
|
|
|
|
// Tile pattern over rectangle
|
|
|
|
SurfaceImpl *surface = static_cast<SurfaceImpl *>(&surfacePattern);
|
|
|
|
// Currently assumes 8x8 pattern
|
|
|
|
int widthPat = 8;
|
|
|
|
int heightPat = 8;
|
|
|
|
for (int xTile = rc.left; xTile < rc.right; xTile += widthPat) {
|
|
|
|
int widthx = (xTile + widthPat > rc.right) ? rc.right - xTile : widthPat;
|
|
|
|
for (int yTile = rc.top; yTile < rc.bottom; yTile += heightPat) {
|
|
|
|
int heighty = (yTile + heightPat > rc.bottom) ? rc.bottom - yTile : heightPat;
|
|
|
|
QRect source(0, 0, widthx, heighty);
|
|
|
|
QRect target(xTile, yTile, widthx, heighty);
|
|
|
|
QPixmap *pixmap = static_cast<QPixmap *>(surface->GetPaintDevice());
|
|
|
|
GetPainter()->drawPixmap(target, *pixmap, source);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SurfaceImpl::RoundedRectangle(PRectangle rc,
|
|
|
|
ColourDesired fore,
|
|
|
|
ColourDesired back)
|
|
|
|
{
|
|
|
|
PenColour(fore);
|
|
|
|
BrushColour(back);
|
2015-06-07 21:19:26 +00:00
|
|
|
GetPainter()->drawRoundRect(QRectFFromPRect(rc));
|
2013-08-28 00:44:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SurfaceImpl::AlphaRectangle(PRectangle rc,
|
|
|
|
int cornerSize,
|
|
|
|
ColourDesired fill,
|
|
|
|
int alphaFill,
|
|
|
|
ColourDesired outline,
|
|
|
|
int alphaOutline,
|
|
|
|
int /*flags*/)
|
|
|
|
{
|
|
|
|
QColor qOutline = QColorFromCA(outline);
|
|
|
|
qOutline.setAlpha(alphaOutline);
|
|
|
|
GetPainter()->setPen(QPen(qOutline));
|
|
|
|
|
|
|
|
QColor qFill = QColorFromCA(fill);
|
|
|
|
qFill.setAlpha(alphaFill);
|
|
|
|
GetPainter()->setBrush(QBrush(qFill));
|
|
|
|
|
|
|
|
// A radius of 1 shows no curve so add 1
|
|
|
|
qreal radius = cornerSize+1;
|
2015-06-07 21:19:26 +00:00
|
|
|
QRectF rect(rc.left, rc.top, rc.Width() - 1, rc.Height() - 1);
|
2013-08-28 00:44:27 +00:00
|
|
|
GetPainter()->drawRoundedRect(rect, radius, radius);
|
|
|
|
}
|
|
|
|
|
2019-05-04 18:14:48 +00:00
|
|
|
void SurfaceImpl::GradientRectangle(PRectangle rc, const std::vector<ColourStop> &stops, GradientOptions options) {
|
|
|
|
QRectF rect = QRectFFromPRect(rc);
|
|
|
|
QLinearGradient linearGradient;
|
|
|
|
switch (options) {
|
|
|
|
case GradientOptions::leftToRight:
|
|
|
|
linearGradient = QLinearGradient(rc.left, rc.top, rc.right, rc.top);
|
|
|
|
break;
|
|
|
|
case GradientOptions::topToBottom:
|
|
|
|
default:
|
|
|
|
linearGradient = QLinearGradient(rc.left, rc.top, rc.left, rc.bottom);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
linearGradient.setSpread(QGradient::RepeatSpread);
|
|
|
|
for (const ColourStop &stop : stops) {
|
|
|
|
linearGradient.setColorAt(stop.position, QColorFromColourAlpha(stop.colour));
|
|
|
|
}
|
|
|
|
QBrush brush = QBrush(linearGradient);
|
|
|
|
GetPainter()->fillRect(rect, brush);
|
|
|
|
}
|
|
|
|
|
2013-08-28 00:44:27 +00:00
|
|
|
static std::vector<unsigned char> ImageByteSwapped(int width, int height, const unsigned char *pixelsImage)
|
|
|
|
{
|
|
|
|
// Input is RGBA, but Format_ARGB32 is BGRA, so swap the red bytes and blue bytes
|
|
|
|
size_t bytes = width * height * 4;
|
|
|
|
std::vector<unsigned char> imageBytes(pixelsImage, pixelsImage+bytes);
|
|
|
|
for (size_t i=0; i<bytes; i+=4)
|
|
|
|
std::swap(imageBytes[i], imageBytes[i+2]);
|
|
|
|
return imageBytes;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SurfaceImpl::DrawRGBAImage(PRectangle rc, int width, int height, const unsigned char *pixelsImage)
|
|
|
|
{
|
|
|
|
std::vector<unsigned char> imageBytes = ImageByteSwapped(width, height, pixelsImage);
|
|
|
|
QImage image(&imageBytes[0], width, height, QImage::Format_ARGB32);
|
|
|
|
QPoint pt(rc.left, rc.top);
|
|
|
|
GetPainter()->drawImage(pt, image);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SurfaceImpl::Ellipse(PRectangle rc,
|
|
|
|
ColourDesired fore,
|
|
|
|
ColourDesired back)
|
|
|
|
{
|
|
|
|
PenColour(fore);
|
|
|
|
BrushColour(back);
|
2015-06-07 21:19:26 +00:00
|
|
|
GetPainter()->drawEllipse(QRectFFromPRect(rc));
|
2013-08-28 00:44:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SurfaceImpl::Copy(PRectangle rc, Point from, Surface &surfaceSource)
|
|
|
|
{
|
|
|
|
SurfaceImpl *source = static_cast<SurfaceImpl *>(&surfaceSource);
|
|
|
|
QPixmap *pixmap = static_cast<QPixmap *>(source->GetPaintDevice());
|
|
|
|
|
|
|
|
GetPainter()->drawPixmap(rc.left, rc.top, *pixmap, from.x, from.y, -1, -1);
|
|
|
|
}
|
|
|
|
|
2019-05-04 18:14:48 +00:00
|
|
|
std::unique_ptr<IScreenLineLayout> SurfaceImpl::Layout(const IScreenLine *)
|
|
|
|
{
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2013-08-28 00:44:27 +00:00
|
|
|
void SurfaceImpl::DrawTextNoClip(PRectangle rc,
|
|
|
|
Font &font,
|
|
|
|
XYPOSITION ybase,
|
2019-05-04 18:14:48 +00:00
|
|
|
std::string_view text,
|
2013-08-28 00:44:27 +00:00
|
|
|
ColourDesired fore,
|
|
|
|
ColourDesired back)
|
|
|
|
{
|
|
|
|
SetFont(font);
|
|
|
|
PenColour(fore);
|
|
|
|
|
|
|
|
GetPainter()->setBackground(QColorFromCA(back));
|
|
|
|
GetPainter()->setBackgroundMode(Qt::OpaqueMode);
|
2019-05-04 18:14:48 +00:00
|
|
|
QString su = UnicodeFromText(codec, text);
|
2013-08-28 00:44:27 +00:00
|
|
|
GetPainter()->drawText(QPointF(rc.left, ybase), su);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SurfaceImpl::DrawTextClipped(PRectangle rc,
|
|
|
|
Font &font,
|
|
|
|
XYPOSITION ybase,
|
2019-05-04 18:14:48 +00:00
|
|
|
std::string_view text,
|
2013-08-28 00:44:27 +00:00
|
|
|
ColourDesired fore,
|
|
|
|
ColourDesired back)
|
|
|
|
{
|
|
|
|
SetClip(rc);
|
2019-05-04 18:14:48 +00:00
|
|
|
DrawTextNoClip(rc, font, ybase, text, fore, back);
|
2013-08-28 00:44:27 +00:00
|
|
|
GetPainter()->setClipping(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SurfaceImpl::DrawTextTransparent(PRectangle rc,
|
|
|
|
Font &font,
|
|
|
|
XYPOSITION ybase,
|
2019-05-04 18:14:48 +00:00
|
|
|
std::string_view text,
|
2013-08-28 00:44:27 +00:00
|
|
|
ColourDesired fore)
|
|
|
|
{
|
|
|
|
SetFont(font);
|
|
|
|
PenColour(fore);
|
|
|
|
|
|
|
|
GetPainter()->setBackgroundMode(Qt::TransparentMode);
|
2019-05-04 18:14:48 +00:00
|
|
|
QString su = UnicodeFromText(codec, text);
|
2013-08-28 00:44:27 +00:00
|
|
|
GetPainter()->drawText(QPointF(rc.left, ybase), su);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SurfaceImpl::SetClip(PRectangle rc)
|
|
|
|
{
|
2015-06-07 21:19:26 +00:00
|
|
|
GetPainter()->setClipRect(QRectFFromPRect(rc));
|
2013-08-28 00:44:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SurfaceImpl::MeasureWidths(Font &font,
|
2019-05-04 18:14:48 +00:00
|
|
|
std::string_view text,
|
2013-08-28 00:44:27 +00:00
|
|
|
XYPOSITION *positions)
|
|
|
|
{
|
|
|
|
if (!font.GetID())
|
|
|
|
return;
|
|
|
|
SetCodec(font);
|
2019-05-04 18:14:48 +00:00
|
|
|
QString su = UnicodeFromText(codec, text);
|
2013-08-28 00:44:27 +00:00
|
|
|
QTextLayout tlay(su, *FontPointer(font), GetPaintDevice());
|
|
|
|
tlay.beginLayout();
|
|
|
|
QTextLine tl = tlay.createLine();
|
|
|
|
tlay.endLayout();
|
|
|
|
if (unicodeMode) {
|
|
|
|
int fit = su.size();
|
|
|
|
int ui=0;
|
2019-05-04 18:14:48 +00:00
|
|
|
size_t i=0;
|
2013-08-28 00:44:27 +00:00
|
|
|
while (ui<fit) {
|
2019-05-04 18:14:48 +00:00
|
|
|
const unsigned char uch = text[i];
|
|
|
|
const unsigned int byteCount = UTF8BytesOfLead[uch];
|
|
|
|
const int codeUnits = UTF16LengthFromUTF8ByteCount(byteCount);
|
2013-08-28 00:44:27 +00:00
|
|
|
qreal xPosition = tl.cursorToX(ui+codeUnits);
|
2019-05-04 18:14:48 +00:00
|
|
|
for (size_t bytePos=0; (bytePos<byteCount) && (i<text.length()); bytePos++) {
|
2015-06-07 21:19:26 +00:00
|
|
|
positions[i++] = xPosition;
|
2013-08-28 00:44:27 +00:00
|
|
|
}
|
|
|
|
ui += codeUnits;
|
|
|
|
}
|
2015-06-07 21:19:26 +00:00
|
|
|
XYPOSITION lastPos = 0;
|
2013-08-28 00:44:27 +00:00
|
|
|
if (i > 0)
|
|
|
|
lastPos = positions[i-1];
|
2019-05-04 18:14:48 +00:00
|
|
|
while (i<text.length()) {
|
2013-08-28 00:44:27 +00:00
|
|
|
positions[i++] = lastPos;
|
|
|
|
}
|
|
|
|
} else if (codePage) {
|
|
|
|
// DBCS
|
|
|
|
int ui = 0;
|
2019-05-04 18:14:48 +00:00
|
|
|
for (size_t i=0; i<text.length();) {
|
|
|
|
size_t lenChar = DBCSIsLeadByte(codePage, text[i]) ? 2 : 1;
|
2013-08-28 00:44:27 +00:00
|
|
|
qreal xPosition = tl.cursorToX(ui+1);
|
2019-05-04 18:14:48 +00:00
|
|
|
for (unsigned int bytePos=0; (bytePos<lenChar) && (i<text.length()); bytePos++) {
|
2015-06-07 21:19:26 +00:00
|
|
|
positions[i++] = xPosition;
|
2013-08-28 00:44:27 +00:00
|
|
|
}
|
|
|
|
ui++;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Single byte encoding
|
2019-05-04 18:14:48 +00:00
|
|
|
for (int i=0; i<static_cast<int>(text.length()); i++) {
|
2015-06-07 21:19:26 +00:00
|
|
|
positions[i] = tl.cursorToX(i+1);
|
2013-08-28 00:44:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-04 18:14:48 +00:00
|
|
|
XYPOSITION SurfaceImpl::WidthText(Font &font, std::string_view text)
|
2013-08-28 00:44:27 +00:00
|
|
|
{
|
2015-06-07 21:19:26 +00:00
|
|
|
QFontMetricsF metrics(*FontPointer(font), device);
|
2013-08-28 00:44:27 +00:00
|
|
|
SetCodec(font);
|
2019-05-04 18:14:48 +00:00
|
|
|
QString su = UnicodeFromText(codec, text);
|
|
|
|
return metrics.width(su);
|
2013-08-28 00:44:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
XYPOSITION SurfaceImpl::Ascent(Font &font)
|
|
|
|
{
|
2015-06-07 21:19:26 +00:00
|
|
|
QFontMetricsF metrics(*FontPointer(font), device);
|
2013-08-28 00:44:27 +00:00
|
|
|
return metrics.ascent();
|
|
|
|
}
|
|
|
|
|
|
|
|
XYPOSITION SurfaceImpl::Descent(Font &font)
|
|
|
|
{
|
2015-06-07 21:19:26 +00:00
|
|
|
QFontMetricsF metrics(*FontPointer(font), device);
|
2013-08-28 00:44:27 +00:00
|
|
|
// Qt returns 1 less than true descent
|
|
|
|
// See: QFontEngineWin::descent which says:
|
2015-06-07 21:19:26 +00:00
|
|
|
// ### we subtract 1 to even out the historical +1 in QFontMetrics's
|
2013-08-28 00:44:27 +00:00
|
|
|
// ### height=asc+desc+1 equation. Fix in Qt5.
|
|
|
|
return metrics.descent() + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
XYPOSITION SurfaceImpl::InternalLeading(Font & /* font */)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
XYPOSITION SurfaceImpl::Height(Font &font)
|
|
|
|
{
|
2015-06-07 21:19:26 +00:00
|
|
|
QFontMetricsF metrics(*FontPointer(font), device);
|
2013-08-28 00:44:27 +00:00
|
|
|
return metrics.height();
|
|
|
|
}
|
|
|
|
|
|
|
|
XYPOSITION SurfaceImpl::AverageCharWidth(Font &font)
|
|
|
|
{
|
2015-06-07 21:19:26 +00:00
|
|
|
QFontMetricsF metrics(*FontPointer(font), device);
|
2013-08-28 00:44:27 +00:00
|
|
|
return metrics.averageCharWidth();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SurfaceImpl::FlushCachedState()
|
|
|
|
{
|
|
|
|
if (device->paintingActive()) {
|
|
|
|
GetPainter()->setPen(QPen());
|
|
|
|
GetPainter()->setBrush(QBrush());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SurfaceImpl::SetUnicodeMode(bool unicodeMode_)
|
|
|
|
{
|
|
|
|
unicodeMode=unicodeMode_;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SurfaceImpl::SetDBCSMode(int codePage_)
|
|
|
|
{
|
|
|
|
codePage = codePage_;
|
|
|
|
}
|
|
|
|
|
2019-05-04 18:14:48 +00:00
|
|
|
void SurfaceImpl::SetBidiR2L(bool)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-08-28 00:44:27 +00:00
|
|
|
QPaintDevice *SurfaceImpl::GetPaintDevice()
|
|
|
|
{
|
|
|
|
return device;
|
|
|
|
}
|
|
|
|
|
|
|
|
QPainter *SurfaceImpl::GetPainter()
|
|
|
|
{
|
|
|
|
Q_ASSERT(device);
|
2019-05-04 18:14:48 +00:00
|
|
|
if (!painter) {
|
2013-08-28 00:44:27 +00:00
|
|
|
if (device->paintingActive()) {
|
|
|
|
painter = device->paintEngine()->painter();
|
|
|
|
} else {
|
|
|
|
painterOwned = true;
|
|
|
|
painter = new QPainter(device);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set text antialiasing unconditionally.
|
|
|
|
// The font's style strategy will override.
|
|
|
|
painter->setRenderHint(QPainter::TextAntialiasing, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
return painter;
|
|
|
|
}
|
|
|
|
|
|
|
|
Surface *Surface::Allocate(int)
|
|
|
|
{
|
|
|
|
return new SurfaceImpl;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
|
|
|
namespace {
|
2019-05-04 18:14:48 +00:00
|
|
|
QWidget *window(WindowID wid) noexcept
|
2013-08-28 00:44:27 +00:00
|
|
|
{
|
|
|
|
return static_cast<QWidget *>(wid);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Window::~Window() {}
|
|
|
|
|
|
|
|
void Window::Destroy()
|
|
|
|
{
|
|
|
|
if (wid)
|
|
|
|
delete window(wid);
|
2019-05-04 18:14:48 +00:00
|
|
|
wid = nullptr;
|
2013-08-28 00:44:27 +00:00
|
|
|
}
|
2019-05-04 18:14:48 +00:00
|
|
|
PRectangle Window::GetPosition() const
|
2013-08-28 00:44:27 +00:00
|
|
|
{
|
|
|
|
// Before any size allocated pretend its 1000 wide so not scrolled
|
|
|
|
return wid ? PRectFromQRect(window(wid)->frameGeometry()) : PRectangle(0, 0, 1000, 1000);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Window::SetPosition(PRectangle rc)
|
|
|
|
{
|
|
|
|
if (wid)
|
|
|
|
window(wid)->setGeometry(QRectFromPRect(rc));
|
|
|
|
}
|
|
|
|
|
2019-05-04 18:14:48 +00:00
|
|
|
void Window::SetPositionRelative(PRectangle rc, const Window *relativeTo)
|
2013-08-28 00:44:27 +00:00
|
|
|
{
|
2019-05-04 18:14:48 +00:00
|
|
|
QPoint oPos = window(relativeTo->wid)->mapToGlobal(QPoint(0,0));
|
2013-08-28 00:44:27 +00:00
|
|
|
int ox = oPos.x();
|
|
|
|
int oy = oPos.y();
|
|
|
|
ox += rc.left;
|
|
|
|
oy += rc.top;
|
|
|
|
|
|
|
|
QDesktopWidget *desktop = QApplication::desktop();
|
|
|
|
QRect rectDesk = desktop->availableGeometry(QPoint(ox, oy));
|
|
|
|
/* do some corrections to fit into screen */
|
|
|
|
int sizex = rc.right - rc.left;
|
|
|
|
int sizey = rc.bottom - rc.top;
|
|
|
|
int screenWidth = rectDesk.width();
|
|
|
|
if (ox < rectDesk.x())
|
|
|
|
ox = rectDesk.x();
|
|
|
|
if (sizex > screenWidth)
|
|
|
|
ox = rectDesk.x(); /* the best we can do */
|
|
|
|
else if (ox + sizex > rectDesk.right())
|
|
|
|
ox = rectDesk.right() - sizex;
|
|
|
|
if (oy + sizey > rectDesk.bottom())
|
|
|
|
oy = rectDesk.bottom() - sizey;
|
|
|
|
|
|
|
|
Q_ASSERT(wid);
|
|
|
|
window(wid)->move(ox, oy);
|
|
|
|
window(wid)->resize(sizex, sizey);
|
|
|
|
}
|
|
|
|
|
2019-05-04 18:14:48 +00:00
|
|
|
PRectangle Window::GetClientPosition() const
|
2013-08-28 00:44:27 +00:00
|
|
|
{
|
|
|
|
// The client position is the window position
|
|
|
|
return GetPosition();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Window::Show(bool show)
|
|
|
|
{
|
|
|
|
if (wid)
|
|
|
|
window(wid)->setVisible(show);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Window::InvalidateAll()
|
|
|
|
{
|
|
|
|
if (wid)
|
|
|
|
window(wid)->update();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Window::InvalidateRectangle(PRectangle rc)
|
|
|
|
{
|
|
|
|
if (wid)
|
|
|
|
window(wid)->update(QRectFromPRect(rc));
|
|
|
|
}
|
|
|
|
|
|
|
|
void Window::SetFont(Font &font)
|
|
|
|
{
|
|
|
|
if (wid)
|
|
|
|
window(wid)->setFont(*FontPointer(font));
|
|
|
|
}
|
|
|
|
|
|
|
|
void Window::SetCursor(Cursor curs)
|
|
|
|
{
|
|
|
|
if (wid) {
|
|
|
|
Qt::CursorShape shape;
|
|
|
|
|
|
|
|
switch (curs) {
|
|
|
|
case cursorText: shape = Qt::IBeamCursor; break;
|
|
|
|
case cursorArrow: shape = Qt::ArrowCursor; break;
|
|
|
|
case cursorUp: shape = Qt::UpArrowCursor; break;
|
|
|
|
case cursorWait: shape = Qt::WaitCursor; break;
|
|
|
|
case cursorHoriz: shape = Qt::SizeHorCursor; break;
|
|
|
|
case cursorVert: shape = Qt::SizeVerCursor; break;
|
|
|
|
case cursorHand: shape = Qt::PointingHandCursor; break;
|
|
|
|
default: shape = Qt::ArrowCursor; break;
|
|
|
|
}
|
|
|
|
|
|
|
|
QCursor cursor = QCursor(shape);
|
|
|
|
|
|
|
|
if (curs != cursorLast) {
|
|
|
|
window(wid)->setCursor(cursor);
|
|
|
|
cursorLast = curs;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Returns rectangle of monitor pt is on, both rect and pt are in Window's
|
|
|
|
window coordinates */
|
|
|
|
PRectangle Window::GetMonitorRect(Point pt)
|
|
|
|
{
|
|
|
|
QPoint originGlobal = window(wid)->mapToGlobal(QPoint(0, 0));
|
|
|
|
QPoint posGlobal = window(wid)->mapToGlobal(QPoint(pt.x, pt.y));
|
|
|
|
QDesktopWidget *desktop = QApplication::desktop();
|
|
|
|
QRect rectScreen = desktop->availableGeometry(posGlobal);
|
2015-06-07 21:19:26 +00:00
|
|
|
rectScreen.translate(-originGlobal.x(), -originGlobal.y());
|
2013-08-28 00:44:27 +00:00
|
|
|
return PRectangle(rectScreen.left(), rectScreen.top(),
|
|
|
|
rectScreen.right(), rectScreen.bottom());
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
class ListWidget : public QListWidget {
|
|
|
|
public:
|
2015-06-07 21:19:26 +00:00
|
|
|
explicit ListWidget(QWidget *parent);
|
2013-08-28 00:44:27 +00:00
|
|
|
virtual ~ListWidget();
|
|
|
|
|
2019-05-04 18:14:48 +00:00
|
|
|
void setDelegate(IListBoxDelegate *lbDelegate);
|
|
|
|
void selectionChanged();
|
2013-08-28 00:44:27 +00:00
|
|
|
|
|
|
|
protected:
|
2019-05-04 18:14:48 +00:00
|
|
|
void mouseReleaseEvent(QMouseEvent * event) override;
|
|
|
|
void mouseDoubleClickEvent(QMouseEvent *event) override;
|
|
|
|
QStyleOptionViewItem viewOptions() const override;
|
2013-08-28 00:44:27 +00:00
|
|
|
|
|
|
|
private:
|
2019-05-04 18:14:48 +00:00
|
|
|
IListBoxDelegate *delegate;
|
2013-08-28 00:44:27 +00:00
|
|
|
};
|
|
|
|
|
2019-05-04 18:14:48 +00:00
|
|
|
class ListBoxImpl : public ListBox {
|
|
|
|
public:
|
|
|
|
ListBoxImpl();
|
|
|
|
~ListBoxImpl();
|
2013-08-28 00:44:27 +00:00
|
|
|
|
2019-05-04 18:14:48 +00:00
|
|
|
void SetFont(Font &font) override;
|
|
|
|
void Create(Window &parent, int ctrlID, Point location,
|
|
|
|
int lineHeight, bool unicodeMode_, int technology) override;
|
|
|
|
void SetAverageCharWidth(int width) override;
|
|
|
|
void SetVisibleRows(int rows) override;
|
|
|
|
int GetVisibleRows() const override;
|
|
|
|
PRectangle GetDesiredRect() override;
|
|
|
|
int CaretFromEdge() override;
|
|
|
|
void Clear() override;
|
|
|
|
void Append(char *s, int type = -1) override;
|
|
|
|
int Length() override;
|
|
|
|
void Select(int n) override;
|
|
|
|
int GetSelection() override;
|
|
|
|
int Find(const char *prefix) override;
|
|
|
|
void GetValue(int n, char *value, int len) override;
|
|
|
|
void RegisterImage(int type, const char *xpmData) override;
|
|
|
|
void RegisterRGBAImage(int type, int width, int height,
|
|
|
|
const unsigned char *pixelsImage) override;
|
|
|
|
virtual void RegisterQPixmapImage(int type, const QPixmap& pm);
|
|
|
|
void ClearRegisteredImages() override;
|
|
|
|
void SetDelegate(IListBoxDelegate *lbDelegate) override;
|
|
|
|
void SetList(const char *list, char separator, char typesep) override;
|
|
|
|
|
|
|
|
ListWidget *GetWidget() const;
|
|
|
|
private:
|
|
|
|
bool unicodeMode;
|
|
|
|
int visibleRows;
|
|
|
|
QMap<int,QPixmap> images;
|
|
|
|
};
|
2013-08-28 00:44:27 +00:00
|
|
|
ListBoxImpl::ListBoxImpl()
|
|
|
|
: unicodeMode(false), visibleRows(5)
|
|
|
|
{}
|
|
|
|
|
|
|
|
ListBoxImpl::~ListBoxImpl() {}
|
|
|
|
|
|
|
|
void ListBoxImpl::Create(Window &parent,
|
|
|
|
int /*ctrlID*/,
|
|
|
|
Point location,
|
|
|
|
int /*lineHeight*/,
|
|
|
|
bool unicodeMode_,
|
|
|
|
int)
|
|
|
|
{
|
|
|
|
unicodeMode = unicodeMode_;
|
|
|
|
|
|
|
|
QWidget *qparent = static_cast<QWidget *>(parent.GetID());
|
|
|
|
ListWidget *list = new ListWidget(qparent);
|
|
|
|
|
|
|
|
#if defined(Q_OS_WIN)
|
|
|
|
// On Windows, Qt::ToolTip causes a crash when the list is clicked on
|
|
|
|
// so Qt::Tool is used.
|
2019-05-04 18:14:48 +00:00
|
|
|
list->setParent(nullptr, Qt::Tool | Qt::FramelessWindowHint | Qt::WindowStaysOnTopHint
|
|
|
|
#if QT_VERSION >= QT_VERSION_CHECK(5, 0, 0)
|
|
|
|
| Qt::WindowDoesNotAcceptFocus
|
|
|
|
#endif
|
|
|
|
);
|
2013-08-28 00:44:27 +00:00
|
|
|
#else
|
|
|
|
// On OS X, Qt::Tool takes focus so main window loses focus so
|
|
|
|
// keyboard stops working. Qt::ToolTip works but its only really
|
|
|
|
// documented for tooltips.
|
|
|
|
// On Linux / X this setting allows clicking on list items.
|
2019-05-04 18:14:48 +00:00
|
|
|
list->setParent(nullptr, Qt::ToolTip | Qt::FramelessWindowHint);
|
2013-08-28 00:44:27 +00:00
|
|
|
#endif
|
|
|
|
list->setAttribute(Qt::WA_ShowWithoutActivating);
|
|
|
|
list->setFocusPolicy(Qt::NoFocus);
|
|
|
|
list->setUniformItemSizes(true);
|
|
|
|
list->setVerticalScrollBarPolicy(Qt::ScrollBarAsNeeded);
|
|
|
|
list->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
|
|
|
|
list->move(location.x, location.y);
|
|
|
|
|
2015-06-07 21:19:26 +00:00
|
|
|
int maxIconWidth = 0;
|
|
|
|
int maxIconHeight = 0;
|
|
|
|
foreach (QPixmap im, images) {
|
|
|
|
if (maxIconWidth < im.width())
|
|
|
|
maxIconWidth = im.width();
|
|
|
|
if (maxIconHeight < im.height())
|
|
|
|
maxIconHeight = im.height();
|
|
|
|
}
|
|
|
|
list->setIconSize(QSize(maxIconWidth, maxIconHeight));
|
|
|
|
|
2013-08-28 00:44:27 +00:00
|
|
|
wid = list;
|
|
|
|
}
|
|
|
|
void ListBoxImpl::SetFont(Font &font)
|
|
|
|
{
|
2019-05-04 18:14:48 +00:00
|
|
|
ListWidget *list = GetWidget();
|
2013-08-28 00:44:27 +00:00
|
|
|
list->setFont(*FontPointer(font));
|
|
|
|
}
|
|
|
|
void ListBoxImpl::SetAverageCharWidth(int /*width*/) {}
|
|
|
|
|
|
|
|
void ListBoxImpl::SetVisibleRows(int rows)
|
|
|
|
{
|
|
|
|
visibleRows = rows;
|
|
|
|
}
|
|
|
|
|
|
|
|
int ListBoxImpl::GetVisibleRows() const
|
|
|
|
{
|
|
|
|
return visibleRows;
|
|
|
|
}
|
|
|
|
PRectangle ListBoxImpl::GetDesiredRect()
|
|
|
|
{
|
2019-05-04 18:14:48 +00:00
|
|
|
ListWidget *list = GetWidget();
|
2013-08-28 00:44:27 +00:00
|
|
|
int rows = Length();
|
|
|
|
if (rows == 0 || rows > visibleRows) {
|
|
|
|
rows = visibleRows;
|
|
|
|
}
|
|
|
|
int rowHeight = list->sizeHintForRow(0);
|
|
|
|
int height = (rows * rowHeight) + (2 * list->frameWidth());
|
|
|
|
|
|
|
|
QStyle *style = QApplication::style();
|
|
|
|
int width = list->sizeHintForColumn(0) + (2 * list->frameWidth());
|
|
|
|
if (Length() > rows) {
|
|
|
|
width += style->pixelMetric(QStyle::PM_ScrollBarExtent);
|
|
|
|
}
|
|
|
|
|
|
|
|
return PRectangle(0, 0, width, height);
|
|
|
|
}
|
|
|
|
int ListBoxImpl::CaretFromEdge()
|
|
|
|
{
|
2019-05-04 18:14:48 +00:00
|
|
|
ListWidget *list = GetWidget();
|
2013-08-28 00:44:27 +00:00
|
|
|
int maxIconWidth = 0;
|
|
|
|
foreach (QPixmap im, images) {
|
|
|
|
if (maxIconWidth < im.width())
|
|
|
|
maxIconWidth = im.width();
|
|
|
|
}
|
|
|
|
|
2015-06-07 21:19:26 +00:00
|
|
|
int extra;
|
|
|
|
// The 12 is from trial and error on OS X and the 7
|
|
|
|
// is from trial and error on Windows - there may be
|
2013-08-28 00:44:27 +00:00
|
|
|
// a better programmatic way to find any padding factors.
|
2015-06-07 21:19:26 +00:00
|
|
|
#ifdef Q_OS_DARWIN
|
|
|
|
extra = 12;
|
|
|
|
#else
|
|
|
|
extra = 7;
|
|
|
|
#endif
|
|
|
|
return maxIconWidth + (2 * list->frameWidth()) + extra;
|
2013-08-28 00:44:27 +00:00
|
|
|
}
|
|
|
|
void ListBoxImpl::Clear()
|
|
|
|
{
|
2019-05-04 18:14:48 +00:00
|
|
|
ListWidget *list = GetWidget();
|
2013-08-28 00:44:27 +00:00
|
|
|
list->clear();
|
|
|
|
}
|
|
|
|
void ListBoxImpl::Append(char *s, int type)
|
|
|
|
{
|
2019-05-04 18:14:48 +00:00
|
|
|
ListWidget *list = GetWidget();
|
2013-08-28 00:44:27 +00:00
|
|
|
QString str = unicodeMode ? QString::fromUtf8(s) : QString::fromLocal8Bit(s);
|
|
|
|
QIcon icon;
|
|
|
|
if (type >= 0) {
|
|
|
|
Q_ASSERT(images.contains(type));
|
|
|
|
icon = images.value(type);
|
|
|
|
}
|
|
|
|
new QListWidgetItem(icon, str, list);
|
|
|
|
}
|
|
|
|
int ListBoxImpl::Length()
|
|
|
|
{
|
2019-05-04 18:14:48 +00:00
|
|
|
ListWidget *list = GetWidget();
|
2013-08-28 00:44:27 +00:00
|
|
|
return list->count();
|
|
|
|
}
|
|
|
|
void ListBoxImpl::Select(int n)
|
|
|
|
{
|
2019-05-04 18:14:48 +00:00
|
|
|
ListWidget *list = GetWidget();
|
2015-06-07 21:19:26 +00:00
|
|
|
QModelIndex index = list->model()->index(n, 0);
|
|
|
|
if (index.isValid()) {
|
|
|
|
QRect row_rect = list->visualRect(index);
|
|
|
|
if (!list->viewport()->rect().contains(row_rect)) {
|
|
|
|
list->scrollTo(index, QAbstractItemView::PositionAtTop);
|
|
|
|
}
|
|
|
|
}
|
2013-08-28 00:44:27 +00:00
|
|
|
list->setCurrentRow(n);
|
2019-05-04 18:14:48 +00:00
|
|
|
list->selectionChanged();
|
2013-08-28 00:44:27 +00:00
|
|
|
}
|
|
|
|
int ListBoxImpl::GetSelection()
|
|
|
|
{
|
2019-05-04 18:14:48 +00:00
|
|
|
ListWidget *list = GetWidget();
|
2013-08-28 00:44:27 +00:00
|
|
|
return list->currentRow();
|
|
|
|
}
|
|
|
|
int ListBoxImpl::Find(const char *prefix)
|
|
|
|
{
|
2019-05-04 18:14:48 +00:00
|
|
|
ListWidget *list = GetWidget();
|
2013-08-28 00:44:27 +00:00
|
|
|
QString sPrefix = unicodeMode ? QString::fromUtf8(prefix) : QString::fromLocal8Bit(prefix);
|
|
|
|
QList<QListWidgetItem *> ms = list->findItems(sPrefix, Qt::MatchStartsWith);
|
|
|
|
int result = -1;
|
|
|
|
if (!ms.isEmpty()) {
|
|
|
|
result = list->row(ms.first());
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
void ListBoxImpl::GetValue(int n, char *value, int len)
|
|
|
|
{
|
2019-05-04 18:14:48 +00:00
|
|
|
ListWidget *list = GetWidget();
|
2013-08-28 00:44:27 +00:00
|
|
|
QListWidgetItem *item = list->item(n);
|
|
|
|
QString str = item->data(Qt::DisplayRole).toString();
|
|
|
|
QByteArray bytes = unicodeMode ? str.toUtf8() : str.toLocal8Bit();
|
|
|
|
|
|
|
|
strncpy(value, bytes.constData(), len);
|
|
|
|
value[len-1] = '\0';
|
|
|
|
}
|
|
|
|
|
2015-06-07 21:19:26 +00:00
|
|
|
void ListBoxImpl::RegisterQPixmapImage(int type, const QPixmap& pm)
|
|
|
|
{
|
|
|
|
images[type] = pm;
|
2019-05-04 18:14:48 +00:00
|
|
|
ListWidget *list = GetWidget();
|
|
|
|
if (list) {
|
2015-06-07 21:19:26 +00:00
|
|
|
QSize iconSize = list->iconSize();
|
|
|
|
if (pm.width() > iconSize.width() || pm.height() > iconSize.height())
|
2019-05-04 18:14:48 +00:00
|
|
|
list->setIconSize(QSize(qMax(pm.width(), iconSize.width()),
|
2015-06-07 21:19:26 +00:00
|
|
|
qMax(pm.height(), iconSize.height())));
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-08-28 00:44:27 +00:00
|
|
|
void ListBoxImpl::RegisterImage(int type, const char *xpmData)
|
|
|
|
{
|
2015-06-07 21:19:26 +00:00
|
|
|
RegisterQPixmapImage(type, QPixmap(reinterpret_cast<const char * const *>(xpmData)));
|
2013-08-28 00:44:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ListBoxImpl::RegisterRGBAImage(int type, int width, int height, const unsigned char *pixelsImage)
|
|
|
|
{
|
|
|
|
std::vector<unsigned char> imageBytes = ImageByteSwapped(width, height, pixelsImage);
|
|
|
|
QImage image(&imageBytes[0], width, height, QImage::Format_ARGB32);
|
2015-06-07 21:19:26 +00:00
|
|
|
RegisterQPixmapImage(type, QPixmap::fromImage(image));
|
2013-08-28 00:44:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ListBoxImpl::ClearRegisteredImages()
|
|
|
|
{
|
|
|
|
images.clear();
|
2019-05-04 18:14:48 +00:00
|
|
|
ListWidget *list = GetWidget();
|
|
|
|
if (list)
|
2015-06-07 21:19:26 +00:00
|
|
|
list->setIconSize(QSize(0, 0));
|
2013-08-28 00:44:27 +00:00
|
|
|
}
|
2019-05-04 18:14:48 +00:00
|
|
|
void ListBoxImpl::SetDelegate(IListBoxDelegate *lbDelegate)
|
2013-08-28 00:44:27 +00:00
|
|
|
{
|
2019-05-04 18:14:48 +00:00
|
|
|
ListWidget *list = GetWidget();
|
|
|
|
list->setDelegate(lbDelegate);
|
2013-08-28 00:44:27 +00:00
|
|
|
}
|
|
|
|
void ListBoxImpl::SetList(const char *list, char separator, char typesep)
|
|
|
|
{
|
|
|
|
// This method is *not* platform dependent.
|
|
|
|
// It is borrowed from the GTK implementation.
|
|
|
|
Clear();
|
2015-06-07 21:19:26 +00:00
|
|
|
size_t count = strlen(list) + 1;
|
2013-08-28 00:44:27 +00:00
|
|
|
std::vector<char> words(list, list+count);
|
|
|
|
char *startword = &words[0];
|
2019-05-04 18:14:48 +00:00
|
|
|
char *numword = nullptr;
|
2013-08-28 00:44:27 +00:00
|
|
|
int i = 0;
|
|
|
|
for (; words[i]; i++) {
|
|
|
|
if (words[i] == separator) {
|
|
|
|
words[i] = '\0';
|
|
|
|
if (numword)
|
|
|
|
*numword = '\0';
|
|
|
|
Append(startword, numword?atoi(numword + 1):-1);
|
|
|
|
startword = &words[0] + i + 1;
|
2019-05-04 18:14:48 +00:00
|
|
|
numword = nullptr;
|
2013-08-28 00:44:27 +00:00
|
|
|
} else if (words[i] == typesep) {
|
|
|
|
numword = &words[0] + i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (startword) {
|
|
|
|
if (numword)
|
|
|
|
*numword = '\0';
|
|
|
|
Append(startword, numword?atoi(numword + 1):-1);
|
|
|
|
}
|
|
|
|
}
|
2019-05-04 18:14:48 +00:00
|
|
|
ListWidget *ListBoxImpl::GetWidget() const
|
|
|
|
{
|
|
|
|
return static_cast<ListWidget *>(wid);
|
|
|
|
}
|
2013-08-28 00:44:27 +00:00
|
|
|
|
2019-05-04 18:14:48 +00:00
|
|
|
ListBox::ListBox() noexcept {}
|
2013-08-28 00:44:27 +00:00
|
|
|
ListBox::~ListBox() {}
|
|
|
|
|
|
|
|
ListBox *ListBox::Allocate()
|
|
|
|
{
|
|
|
|
return new ListBoxImpl();
|
|
|
|
}
|
|
|
|
ListWidget::ListWidget(QWidget *parent)
|
2019-05-04 18:14:48 +00:00
|
|
|
: QListWidget(parent), delegate(nullptr)
|
2013-08-28 00:44:27 +00:00
|
|
|
{}
|
|
|
|
ListWidget::~ListWidget() {}
|
|
|
|
|
2019-05-04 18:14:48 +00:00
|
|
|
void ListWidget::setDelegate(IListBoxDelegate *lbDelegate)
|
2013-08-28 00:44:27 +00:00
|
|
|
{
|
2019-05-04 18:14:48 +00:00
|
|
|
delegate = lbDelegate;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ListWidget::selectionChanged() {
|
|
|
|
if (delegate) {
|
|
|
|
ListBoxEvent event(ListBoxEvent::EventType::selectionChange);
|
|
|
|
delegate->ListNotify(&event);
|
|
|
|
}
|
2013-08-28 00:44:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ListWidget::mouseDoubleClickEvent(QMouseEvent * /* event */)
|
|
|
|
{
|
2019-05-04 18:14:48 +00:00
|
|
|
if (delegate) {
|
|
|
|
ListBoxEvent event(ListBoxEvent::EventType::doubleClick);
|
|
|
|
delegate->ListNotify(&event);
|
2013-08-28 00:44:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-04 18:14:48 +00:00
|
|
|
void ListWidget::mouseReleaseEvent(QMouseEvent * /* event */)
|
|
|
|
{
|
|
|
|
selectionChanged();
|
|
|
|
}
|
|
|
|
|
2013-08-28 00:44:27 +00:00
|
|
|
QStyleOptionViewItem ListWidget::viewOptions() const
|
|
|
|
{
|
|
|
|
QStyleOptionViewItem result = QListWidget::viewOptions();
|
|
|
|
result.state |= QStyle::State_Active;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
//----------------------------------------------------------------------
|
2019-05-04 18:14:48 +00:00
|
|
|
Menu::Menu() noexcept : mid(nullptr) {}
|
2013-08-28 00:44:27 +00:00
|
|
|
void Menu::CreatePopUp()
|
|
|
|
{
|
|
|
|
Destroy();
|
|
|
|
mid = new QMenu();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Menu::Destroy()
|
|
|
|
{
|
|
|
|
if (mid) {
|
|
|
|
QMenu *menu = static_cast<QMenu *>(mid);
|
|
|
|
delete menu;
|
|
|
|
}
|
2019-05-04 18:14:48 +00:00
|
|
|
mid = nullptr;
|
2013-08-28 00:44:27 +00:00
|
|
|
}
|
|
|
|
void Menu::Show(Point pt, Window & /*w*/)
|
|
|
|
{
|
|
|
|
QMenu *menu = static_cast<QMenu *>(mid);
|
|
|
|
menu->exec(QPoint(pt.x, pt.y));
|
|
|
|
Destroy();
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
|
|
|
class DynamicLibraryImpl : public DynamicLibrary {
|
|
|
|
protected:
|
|
|
|
QLibrary *lib;
|
|
|
|
public:
|
2015-06-07 21:19:26 +00:00
|
|
|
explicit DynamicLibraryImpl(const char *modulePath) {
|
2013-08-28 00:44:27 +00:00
|
|
|
QString path = QString::fromUtf8(modulePath);
|
|
|
|
lib = new QLibrary(path);
|
|
|
|
}
|
2019-05-04 18:14:48 +00:00
|
|
|
// Deleted so DynamicLibraryImpl objects can not be copied
|
|
|
|
DynamicLibraryImpl(const DynamicLibraryImpl &) = delete;
|
|
|
|
DynamicLibraryImpl(DynamicLibraryImpl &&) = delete;
|
|
|
|
DynamicLibraryImpl &operator=(const DynamicLibraryImpl &) = delete;
|
|
|
|
DynamicLibraryImpl &operator=(DynamicLibraryImpl &&) = delete;
|
2013-08-28 00:44:27 +00:00
|
|
|
|
|
|
|
virtual ~DynamicLibraryImpl() {
|
|
|
|
if (lib)
|
|
|
|
lib->unload();
|
2019-05-04 18:14:48 +00:00
|
|
|
lib = nullptr;
|
2013-08-28 00:44:27 +00:00
|
|
|
}
|
2019-05-04 18:14:48 +00:00
|
|
|
Function FindFunction(const char *name) override {
|
2013-08-28 00:44:27 +00:00
|
|
|
if (lib) {
|
2015-06-07 21:19:26 +00:00
|
|
|
// C++ standard doesn't like casts between function pointers and void pointers so use a union
|
2013-08-28 00:44:27 +00:00
|
|
|
union {
|
|
|
|
#if QT_VERSION >= QT_VERSION_CHECK(5, 0, 0)
|
|
|
|
QFunctionPointer fp;
|
|
|
|
#else
|
|
|
|
void *fp;
|
|
|
|
#endif
|
|
|
|
Function f;
|
|
|
|
} fnConv;
|
|
|
|
fnConv.fp = lib->resolve(name);
|
|
|
|
return fnConv.f;
|
|
|
|
}
|
2019-05-04 18:14:48 +00:00
|
|
|
return nullptr;
|
2013-08-28 00:44:27 +00:00
|
|
|
}
|
2019-05-04 18:14:48 +00:00
|
|
|
bool IsValid() override {
|
|
|
|
return lib != nullptr;
|
2013-08-28 00:44:27 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
DynamicLibrary *DynamicLibrary::Load(const char *modulePath)
|
|
|
|
{
|
|
|
|
return static_cast<DynamicLibrary *>(new DynamicLibraryImpl(modulePath));
|
|
|
|
}
|
|
|
|
|
|
|
|
ColourDesired Platform::Chrome()
|
|
|
|
{
|
|
|
|
QColor c(Qt::gray);
|
|
|
|
return ColourDesired(c.red(), c.green(), c.blue());
|
|
|
|
}
|
|
|
|
|
|
|
|
ColourDesired Platform::ChromeHighlight()
|
|
|
|
{
|
|
|
|
QColor c(Qt::lightGray);
|
|
|
|
return ColourDesired(c.red(), c.green(), c.blue());
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *Platform::DefaultFont()
|
|
|
|
{
|
|
|
|
static char fontNameDefault[200] = "";
|
|
|
|
if (!fontNameDefault[0]) {
|
|
|
|
QFont font = QApplication::font();
|
|
|
|
strcpy(fontNameDefault, font.family().toUtf8());
|
|
|
|
}
|
|
|
|
return fontNameDefault;
|
|
|
|
}
|
|
|
|
|
|
|
|
int Platform::DefaultFontSize()
|
|
|
|
{
|
|
|
|
QFont font = QApplication::font();
|
|
|
|
return font.pointSize();
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int Platform::DoubleClickTime()
|
|
|
|
{
|
|
|
|
return QApplication::doubleClickInterval();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Platform::DebugDisplay(const char *s)
|
|
|
|
{
|
|
|
|
qWarning("Scintilla: %s", s);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Platform::DebugPrintf(const char *format, ...)
|
|
|
|
{
|
|
|
|
char buffer[2000];
|
|
|
|
va_list pArguments;
|
|
|
|
va_start(pArguments, format);
|
|
|
|
vsprintf(buffer, format, pArguments);
|
|
|
|
va_end(pArguments);
|
|
|
|
Platform::DebugDisplay(buffer);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Platform::ShowAssertionPopUps(bool /*assertionPopUps*/)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Platform::Assert(const char *c, const char *file, int line)
|
|
|
|
{
|
|
|
|
char buffer[2000];
|
|
|
|
sprintf(buffer, "Assertion [%s] failed at %s %d", c, file, line);
|
|
|
|
if (Platform::ShowAssertionPopUps(false)) {
|
|
|
|
QMessageBox mb("Assertion Failure", buffer, QMessageBox::NoIcon,
|
|
|
|
QMessageBox::Ok, QMessageBox::NoButton, QMessageBox::NoButton);
|
|
|
|
mb.exec();
|
|
|
|
} else {
|
|
|
|
strcat(buffer, "\n");
|
|
|
|
Platform::DebugDisplay(buffer);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|