summaryrefslogtreecommitdiff
path: root/src/ui/imageviewer/fqterm_canvas.cpp
blob: 0a967a93e4d553cc0a2485aab3466dac256e72b3 (plain)
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
// SPDX-License-Identifier: GPL-2.0-or-later

#include <QCloseEvent>
#include <QKeyEvent>
#include <QResizeEvent>
#include <QMouseEvent>
#include <QMenu>
#include <QMenuBar>
#include <QFileDialog>
#include <QMessageBox>
#include <QLabel>
#include <QMatrix>
#include <QToolBar>
#include <QActionGroup>
#include <QToolButton>
#include <QDesktopServices>
#include <QDir>
#include <QUrl>
#include <QImageReader>
#include <QMovie>

#include "fqterm_canvas.h"
#include "fqterm.h"
#include "fqterm_config.h"
#include "fqterm_path.h"
#include "fqterm_filedialog.h"

namespace FQTerm {

FQTermCanvas::FQTermCanvas(FQTermConfig * config, QWidget *parent, Qt::WindowFlags f)
    : QScrollArea(parent),
      adjustMode_(Fit),
      aspectRatioMode_(Qt::KeepAspectRatio){
  // TODO: dirty trick

  if (f == 0) {
    isEmbedded = true;
  } else {
    isEmbedded = false;
  }

  config_ = config; 

  menu_ = new QMenu(parent);
  menu_->addAction(tr("zoom 1:1"), this, SLOT(oriSize()), tr("Ctrl+Z"));
  menu_->addAction(tr("adjust size"), this, SLOT(autoAdjust()), tr("Ctrl+X"));
  menu_->addSeparator();
  QAction* zoomInAction = menu_->addAction(tr("zoom in"), this,
                                           SLOT(zoomIn()), tr("Ctrl+="));
  QAction* zoomOutAction = menu_->addAction(tr("zoom out"), this,
                                            SLOT(zoomOut()), tr("Ctrl+-"));
  if (!isEmbedded) {
    menu_->addAction(tr("fullscreen"), this, SLOT(fullScreen()), tr("Ctrl+F"));
  }
  menu_->addSeparator();
  menu_->addAction(tr("rotate CW 90"), this, SLOT(cwRotate()),
                   tr("Ctrl+]"));
  menu_->addAction(tr("rotate CCW 90"), this, SLOT(ccwRotate()),
                   tr("Ctrl+["));
  menu_->addSeparator();
  gifPlayAction_ = menu_->addAction(tr("play gif"), this,
    SLOT(playGIF()), tr("Ctrl+/"));
  menu_->addSeparator();
  menu_->addAction(tr("save as"), this, SLOT(saveImage()), tr("Ctrl+S"));
  menu_->addAction(tr("copy to"), this, SLOT(copyImage()), tr("Ctrl+C"));
  menu_->addAction(tr("silent copy"), this, SLOT(silentCopy()),
    tr("Shift+S"));

  if (!isEmbedded) {
    menu_->addAction(tr("delete"), this, SLOT(deleteImage()), tr("Ctrl+D"));

    menu_->addSeparator();
    menu_->addAction(tr("exit"), this, SLOT(close()), tr("Ctrl+Q"));
  }

  toolBar_ = new QToolBar(this);

  toolBar_->addAction(QIcon(getPath(RESOURCE) + "pic/ViewerButtons/open.png"),
                      tr("Open Dir"), this, SLOT(openDir()));

  zoomInAction->setIcon(
      QIcon(getPath(RESOURCE) + "pic/ViewerButtons/zoomin.png"));
  zoomOutAction->setIcon(
      QIcon(getPath(RESOURCE) + "pic/ViewerButtons/zoomout.png"));

  toolBar_->addAction(zoomInAction);
  toolBar_->addAction(zoomOutAction);

  QActionGroup* gifGroup = new QActionGroup(this);
  gifPlayAction_->setIcon(
    QIcon(getPath(RESOURCE) + "pic/ViewerButtons/play_gif.png"));
  toolBar_->addAction(gifPlayAction_);

  QActionGroup* showSettingGroup = new QActionGroup(this);
  QMenu* showSettingMenu = new QMenu(this);

  QAction* showSettingFitAction =
      showSettingMenu->addAction(tr("show Fit"), this, SLOT(SetAdjustMode()));
  showSettingFitAction->setCheckable(true);
  showSettingFitAction->setData(Fit);
  showSettingGroup->addAction(showSettingFitAction);

  QAction* showSettingMaxFitAction =
      showSettingMenu->addAction(tr("show MaxFit"),
                                 this, SLOT(SetAdjustMode()));
  showSettingMaxFitAction->setCheckable(true);
  showSettingMaxFitAction->setData(MaxFit);
  showSettingGroup->addAction(showSettingMaxFitAction);

  QAction* showSettingOriginAction =
      showSettingMenu->addAction(tr("show Origin"),
                                 this, SLOT(SetAdjustMode()));
  showSettingOriginAction->setCheckable(true);
  showSettingOriginAction->setData(Origin);
  showSettingGroup->addAction(showSettingOriginAction);

  QAction* showSettingStrechAction =
      showSettingMenu->addAction(tr("show Stretch"),
                                 this, SLOT(SetAdjustMode()));
  showSettingStrechAction->setCheckable(true);
  showSettingStrechAction->setData(Stretch);
  showSettingGroup->addAction(showSettingStrechAction);

  QToolButton* showSettingButton = new QToolButton(this);
  QAction* dummyAction = new QAction(
      QIcon(getPath(RESOURCE) + "pic/ViewerButtons/adjustsize.png"),
      tr("Adjust Mode"), showSettingButton);
  showSettingButton->setDefaultAction(dummyAction);
  showSettingButton->setMenu(showSettingMenu);
  showSettingButton->setPopupMode(QToolButton::InstantPopup);

  showSettingFitAction->setChecked(true);

  toolBar_->addWidget(showSettingButton);



#if QT_VERSION >= 0x040200
  setAlignment(Qt::AlignCenter);
#endif
  label_ = new QLabel(viewport());
  label_->setScaledContents(true);
  label_->setAlignment(Qt::AlignCenter);
  label_->setText(tr("No Preview Available"));
  setWidget(label_);
  //  resize(200, 100);
}

FQTermCanvas::~FQTermCanvas() {
  //delete label;
  //delete m_pMenu;
}

void FQTermCanvas::oriSize() {
  useAdjustMode_ = false;
  imageSize_ = image_.size();
  adjustSize(size());
}

void FQTermCanvas::zoomIn() {
  useAdjustMode_ = false;
  resizeImage(0.05f);
}

void FQTermCanvas::zoomOut() {
  useAdjustMode_ = false;
  resizeImage(-0.05f);
}

void FQTermCanvas::autoAdjust() {
  useAdjustMode_ = true;
  adjustSize(size());
}

void FQTermCanvas::cwRotate() {
  rotateImage(90);
}

void FQTermCanvas::ccwRotate() {
  rotateImage(-90);
}

void FQTermCanvas::fullScreen() {
  if (!isFullScreen()) {
    showFullScreen();
  } else {
    showNormal();
  }
}

void FQTermCanvas::loadImage(const QString& name, bool performAdjust) {
  if (label_->movie()) {
    label_->movie()->stop();
    label_->setMovie(NULL);
  }

  gifPlayAction_->setEnabled(name.endsWith("gif"));


  bool res = image_.load(name);
  if (!res) {
    QList<QByteArray> formats = QImageReader::supportedImageFormats();
    for (QList<QByteArray>::iterator it = formats.begin();
         !res && it != formats.end();
         ++it) {
      res = image_.load(name, it->data());
    }
  }
  if (!image_.isNull()) {
    fileName_ = QFileInfo(name).absoluteFilePath();
    setWindowTitle(QFileInfo(name).fileName());

    useAdjustMode_ = true;

    if (!isEmbedded) {
      QSize szView(image_.size());
      szView.scale(640, 480, aspectRatioMode_);

      if (szView.width() < image_.width()) {
        imageSize_ = szView;
        label_->resize(imageSize_);
        label_->clear();
        label_->setAlignment(Qt::AlignCenter);
        label_->setPixmap(scaleImage(imageSize_));
        
        if (!isEmbedded) {
          resize(szView *1.1);
        }
      } else {
        imageSize_ = image_.size();
        label_->resize(imageSize_);
        label_->setPixmap(QPixmap::fromImage(image_));
        if (!isEmbedded) {
          resize(imageSize_ + QSize(5, 5));
        }
      }
    }
    if (isEmbedded) {
      label_->hide();
      if (performAdjust) autoAdjust();
      else label_->setPixmap(QPixmap::fromImage(image_));
      
      label_->show();
    }

  } else {
    FQ_TRACE("canvas", 1) << "Can't load the image: " << name;
  }
}

void FQTermCanvas::playGIF() {
  if (fileName_.endsWith("gif")) {
    gifPlayer_.setFileName(fileName_);
    if (gifPlayer_.isValid()) {
      label_->setMovie(&gifPlayer_);
      gifPlayer_.stop();
      gifPlayer_.start();
      return;
    }
  }
}

void FQTermCanvas::resizeImage(float ratio) {
  QSize szImg = imageSize_;
  szImg *= (1+ratio);
  //we dont need so big
  if (szImg.width() > 10000 || szImg.height() > 10000 ||
      szImg.width() < 1 || szImg.height() < 1) {
    return ;
  }
  imageSize_ = szImg;

  if (!isFullScreen() && !isEmbedded) {
    resize(imageSize_ *1.1);
  } else {
    adjustSize(size());
  }
}

void FQTermCanvas::rotateImage(float ang) {
  QMatrix wm;

  wm.rotate(ang);

  image_ = image_.transformed(wm, Qt::SmoothTransformation);

  imageSize_ = image_.size();

  adjustSize(size());
}

void FQTermCanvas::copyImage() {
  QFileInfo fi(fileName_);
//  QString strSave =
//      QFileDialog::getSaveFileName(
//          this,tr("Choose a filename to save under"),
//          QDir::currentPath() + fi.fileName());
  FQTermFileDialog fileDialog(config_);
  QString strSave = fileDialog.getSaveName(fi.fileName(), "");
  if (strSave.isEmpty()) {
    return ;
  }
  QFile file(fileName_);
  if (file.open(QIODevice::ReadOnly)) {
    QFile save(strSave);
    if (save.open(QIODevice::WriteOnly)) {
      QByteArray ba = file.readAll();
      QDataStream ds(&save);
      ds.writeRawData(ba, ba.size());
      save.close();
    }
    file.close();
  }
}

void FQTermCanvas::silentCopy() {
  // save it to $savefiledialog
  QString strPath = config_->getItemValue("global", "savefiledialog");

  QFileInfo fi(fileName_);
  QString strSave = strPath + "/" + fi.fileName();

  fi.setFile(strSave);

  // add (%d) if exist
  int i = 1;
  while (fi.exists()) {
    strSave = QString("%1/%2(%3).%4").arg(fi.dir().path()).arg
              (fi.completeBaseName()).arg(i).arg(fi.suffix());
    fi.setFile(strSave);
  }

  // copy it
  QFile file(fileName_);
  if (file.open(QIODevice::ReadOnly)) {
    QFile save(strSave);
    if (save.open(QIODevice::WriteOnly)) {
      QByteArray ba = file.readAll();
      QDataStream ds(&save);
      ds.writeRawData(ba, ba.size());
      save.close();
    }
    file.close();
  }
}

QPixmap FQTermCanvas::scaleImage(const QSize &sz) {
  return QPixmap::fromImage(
      image_.scaled(sz, Qt::IgnoreAspectRatio, Qt::SmoothTransformation));
}

void FQTermCanvas::moveImage(float dx, float dy) {
  scrollContentsBy(int(widget()->width()*dx), int(widget()->height() *dy));
}

void FQTermCanvas::saveImage() {

  QFileInfo fi(fileName_);
  FQTermFileDialog fileDialog(config_);
  QString strSave = fileDialog.getSaveName(fi.fileName(), "");
  if (strSave.isEmpty()) {
    return ;
  }
  QString fmt = fi.suffix().toUpper();
  if (!image_.save(strSave, fmt.toLatin1())) {
    QMessageBox::warning(this, tr("Failed to save file"),
                         tr("Cant save file, maybe format not supported"));
  }
}

void FQTermCanvas::deleteImage() {
  QFile::remove(fileName_);
  close();
}

void FQTermCanvas::closeEvent(QCloseEvent *ce) {
  if (!isEmbedded) {
    delete this;
  }
}

void FQTermCanvas::viewportResizeEvent(QResizeEvent *re) {
  adjustSize(re->size());
}

void FQTermCanvas::mousePressEvent(QMouseEvent *me) {
  /* remove this to avoid click by mistake
     if(me->button()&LeftButton)
     {
     close();
     return;
     }
  */
  if (me->button() &Qt::RightButton) {
    menu_->popup(me->globalPos());
  }
}

void FQTermCanvas::keyPressEvent(QKeyEvent *ke) {
  switch (ke->key()) {
    case Qt::Key_Escape:
      if (!isEmbedded) {
        if (isFullScreen()) {
          showNormal();
        } else {
          close();
        }
      }

      break;
    case Qt::Key_D:
      if (!isEmbedded){
        deleteImage();
      }
      break;
    case Qt::Key_Q:
      if (!isEmbedded){
        close();
      }
      break;
  }
}

void FQTermCanvas::adjustSize(QSize szView) {
  szView -= QSize(2 * frameWidth(), 2 * frameWidth());
  if (label_->pixmap() == NULL && image_.isNull()) {
    label_->resize(szView);
    return ;
  }

  QSize szImg = imageSize_;

  if (useAdjustMode_) {
    szImg = image_.size();
    switch(adjustMode_)
    {
    case MaxFit:
      szImg.scale(szView, aspectRatioMode_);
      break;
    case Fit:
      if (szImg.width() > szView.width() || szImg.height() > szView.height() ||
        szImg.width() < image_.width()) {
          szImg.scale(szView, aspectRatioMode_);
      }
      szImg = szImg.boundedTo(image_.size());
      if (szImg.width() < 1 || szImg.height() < 1) {
        return;
      }
      break;
    case Origin:
      break;
    case Stretch:
      szImg = szView;
      break;
    }
  }

  imageSize_ = szImg;
  label_->resize(imageSize_);
  label_->setPixmap(scaleImage(imageSize_));
}

void FQTermCanvas::resizeEvent(QResizeEvent * event) {
  if (useAdjustMode_){
    autoAdjust();
  }
  else adjustSize(size());
  QScrollArea::resizeEvent(event);
}

QMenu* FQTermCanvas::menu() {
  return menu_;
}


QToolBar* FQTermCanvas::ToolBar() {
  return toolBar_;
}

void FQTermCanvas::SetAdjustMode(AdjustMode am) {
  adjustMode_ = am;
  if (adjustMode_ == Stretch) {
    aspectRatioMode_ = Qt::IgnoreAspectRatio;
  }
  else {
    aspectRatioMode_ = Qt::KeepAspectRatio;
  }
  autoAdjust();
}

void FQTermCanvas::SetAdjustMode() {
  SetAdjustMode(AdjustMode((((QAction*)sender())->data()).toInt()));
}

void FQTermCanvas::openDir() {
  QString poolPath = config_->getItemValue("preference", "pool");
  if (poolPath.isEmpty()) {
    poolPath = getPath(USER_CONFIG) + "pool/";
  }
#ifdef WIN32
  QString path = "file:///" + poolPath;
#else
  QString path = "file://" + poolPath;
#endif
  QDesktopServices::openUrl(path);
}

void FQTermCanvas::updateImage(const QString& filename)
{
  if (QFileInfo(filename).absoluteFilePath().toLower() == fileName_) {
    loadImage(fileName_);
  }
  
}


}  // namespace FQTerm

#include "fqterm_canvas.moc"