
QImageViewer
Source (link to git-repo or to original if based on someone elses unmodified work): Add the source-code for this project on opencode.net
Platform: Linux, Windows
Languages: english, russian, ukrainian
View functions: simple view, fullscreen mode, slideshow, zoom in/out/as window/original size.
Edit functions: resize, resize list of images, crop (beta)
Other functions: set image as wallpaper (optional)
Settings: language, hotkeys, dock settings and other.
Please sent reports about bugs and ideas on [email protected]
7 years ago
First public stable version on Qt-Apps.org
7 years ago
First public stable version on Qt-Apps.org
srog
7 years ago
Finding:
https://launchpad.net/qimageviewer
https://github.com/falceeffect/qimageviewer
Building fine with a change in the imageshackuploader.h: #include <QtZlib/zlib.h> to #include <zlib.h>.
Seems to work - Kubuntu 13.04 - 64 bit
Report
Drool
7 years ago
===========================
#ifndef IMAGEHACKUPLOADER_H
#define IMAGEHACKUPLOADER_H
#include <QWidget>
#include <QCloseEvent>
#include "uploadtoimageshack.h"
namespace Ui {
class ImageShackUploader;
}
class ImageShackUploader : public QWidget
{
Q_OBJECT
....
public:
explicit ImageShackUploader(QString imagename);
~ImageShackUploader();
....
private slots:
void on_pushButton_clicked();
void display(QMap<QString,QString>);
private:
Ui::ImageShackUploader *ui;
UploadToImageShack upload;
signals:
void overed();
protected:
void closeEvent(QCloseEvent *);
};
#endif // IMAGEHACKUPLOADER_H
===========================
Report
srog
7 years ago
It seems to be a fork of the https://github.com/abodnyaUA/qimageviewer
Report
abodnya
7 years ago
https://github.com/abodnyaUA/qimageviewer
falceeffect's fork is obsolete.
For compiling you need Qt5 SDK.
For running U need only libqt5widgets5 && libqt5webkit5 packages.
If U use Arch, U can download it from AUR.
https://aur.archlinux.org/packages/qimageviewer-git/
Report
Drool
7 years ago
Report