323 lines
8.8 KiB
C++
323 lines
8.8 KiB
C++
/*
|
|
* This file is part of RawTherapee.
|
|
*
|
|
* Copyright (c) 2004-2010 Gabor Horvath <hgabor@rawtherapee.com>
|
|
*
|
|
* RawTherapee 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 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* RawTherapee 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 RawTherapee. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
#include "previewwindow.h"
|
|
#include "guiutils.h"
|
|
#include "imagearea.h"
|
|
#include "cursormanager.h"
|
|
|
|
PreviewWindow::PreviewWindow () : previewHandler(nullptr), mainCropWin(nullptr), imageArea(nullptr), imgX(0), imgY(0), imgW(0), imgH(0),
|
|
zoom(0.0), press_x(0), press_y(0), isMoving(false), needsUpdate(false), cursor_type(CSUndefined)
|
|
|
|
{
|
|
set_name("PreviewWindow");
|
|
get_style_context()->add_class("drawingarea");
|
|
rconn = signal_size_allocate().connect( sigc::mem_fun(*this, &PreviewWindow::on_resized) );
|
|
}
|
|
|
|
void PreviewWindow::on_realize ()
|
|
{
|
|
|
|
Gtk::DrawingArea::on_realize ();
|
|
add_events(Gdk::POINTER_MOTION_MASK | Gdk::BUTTON_PRESS_MASK | Gdk::BUTTON_RELEASE_MASK);
|
|
}
|
|
|
|
void PreviewWindow::getObservedFrameArea (int& x, int& y, int& w, int& h)
|
|
{
|
|
|
|
if (mainCropWin) {
|
|
int cropX, cropY, cropW, cropH;
|
|
mainCropWin->getCropRectangle (cropX, cropY, cropW, cropH);
|
|
// translate it to screen coordinates
|
|
x = imgX + round(cropX * zoom);
|
|
y = imgY + round(cropY * zoom);
|
|
w = round(cropW * zoom);
|
|
h = round(cropH * zoom);
|
|
}
|
|
}
|
|
|
|
void PreviewWindow::updatePreviewImage ()
|
|
{
|
|
|
|
int W = get_width(), H = get_height();
|
|
Glib::RefPtr<Gdk::Window> wind = get_window();
|
|
|
|
if( ! wind ) {
|
|
needsUpdate = true;
|
|
return;
|
|
}
|
|
|
|
backBuffer = Cairo::RefPtr<BackBuffer> ( new BackBuffer(W, H, Cairo::FORMAT_ARGB32) );
|
|
Cairo::RefPtr<Cairo::ImageSurface> surface = backBuffer->getSurface();
|
|
Glib::RefPtr<Gtk::StyleContext> style = get_style_context();
|
|
Cairo::RefPtr<Cairo::Context> cc = Cairo::Context::create(surface);
|
|
cc->set_source_rgba (0., 0., 0., 0.);
|
|
cc->set_operator (Cairo::OPERATOR_CLEAR);
|
|
cc->paint ();
|
|
cc->set_operator (Cairo::OPERATOR_OVER);
|
|
cc->set_antialias(Cairo::ANTIALIAS_NONE);
|
|
cc->set_line_join(Cairo::LINE_JOIN_MITER);
|
|
|
|
if (previewHandler) {
|
|
Glib::RefPtr<Gdk::Pixbuf> resPixbuf = previewHandler->getRoughImage (W, H, zoom);
|
|
|
|
if (resPixbuf) {
|
|
imgW = resPixbuf->get_width();
|
|
imgH = resPixbuf->get_height();
|
|
imgX = (W - imgW) / 2;
|
|
imgY = (H - imgH) / 2;
|
|
Gdk::Cairo::set_source_pixbuf(cc, resPixbuf, imgX, imgY);
|
|
cc->rectangle(imgX, imgY, imgW, imgH);
|
|
cc->fill();
|
|
|
|
if (previewHandler->getCropParams().enabled) {
|
|
rtengine::CropParams cparams = previewHandler->getCropParams();
|
|
switch (options.cropGuides) {
|
|
case Options::CROP_GUIDE_NONE:
|
|
cparams.guide = "None";
|
|
break;
|
|
case Options::CROP_GUIDE_FRAME:
|
|
cparams.guide = "Frame";
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
drawCrop (cc, imgX, imgY, imgW, imgH, 0, 0, zoom, cparams, true, false);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
void PreviewWindow::setPreviewHandler (PreviewHandler* ph)
|
|
{
|
|
|
|
previewHandler = ph;
|
|
|
|
if (previewHandler) {
|
|
previewHandler->addPreviewImageListener (this);
|
|
}
|
|
}
|
|
|
|
void PreviewWindow::on_resized (Gtk::Allocation& req)
|
|
{
|
|
|
|
updatePreviewImage ();
|
|
queue_draw ();
|
|
}
|
|
|
|
bool PreviewWindow::on_draw(const ::Cairo::RefPtr< Cairo::Context> &cr)
|
|
{
|
|
const Glib::RefPtr<Gtk::StyleContext> style = get_style_context();
|
|
style->render_background(cr, 0, 0, get_width(), get_height());
|
|
|
|
if (!backBuffer) {
|
|
return true;
|
|
}
|
|
|
|
int bufferW, bufferH;
|
|
bufferW = backBuffer->getWidth();
|
|
bufferH = backBuffer->getHeight();
|
|
|
|
if (!mainCropWin && imageArea) {
|
|
mainCropWin = imageArea->getMainCropWindow ();
|
|
|
|
if (mainCropWin) {
|
|
mainCropWin->addCropWindowListener (this);
|
|
}
|
|
}
|
|
|
|
if ((get_width() != bufferW && get_height() != bufferH) || needsUpdate) {
|
|
needsUpdate = false;
|
|
updatePreviewImage ();
|
|
}
|
|
|
|
backBuffer->copySurface(cr, NULL);
|
|
|
|
if (mainCropWin && zoom > 0.0) {
|
|
int x, y, w, h;
|
|
getObservedFrameArea (x, y, w, h);
|
|
if (x>imgX || y>imgY || w < imgW || h < imgH) {
|
|
double rectX = x + 0.5;
|
|
double rectY = y + 0.5;
|
|
double rectW = std::min(w, (int)(imgW - (x - imgX) - 1));
|
|
double rectH = std::min(h, (int)(imgH - (y - imgY) - 1));
|
|
|
|
// draw a black "shadow" line
|
|
cr->set_source_rgba (0.0, 0.0, 0.0, 0.65);
|
|
cr->set_line_width (1.);
|
|
cr->set_line_join(Cairo::LINE_JOIN_MITER);
|
|
cr->rectangle (rectX + 1., rectY + 1, rectW, rectH);
|
|
cr->stroke ();
|
|
|
|
// draw a "frame" line. Color of frame line can be set in preferences
|
|
cr->set_source_rgba(options.navGuideBrush[0], options.navGuideBrush[1], options.navGuideBrush[2], options.navGuideBrush[3]); //( 1.0, 1.0, 1.0, 1.0);
|
|
cr->rectangle (rectX, rectY, rectW, rectH);
|
|
cr->stroke ();
|
|
}
|
|
}
|
|
|
|
style->render_frame (cr, 0, 0, get_width(), get_height());
|
|
|
|
return true;
|
|
}
|
|
|
|
void PreviewWindow::previewImageChanged ()
|
|
{
|
|
|
|
updatePreviewImage ();
|
|
queue_draw ();
|
|
}
|
|
|
|
void PreviewWindow::setImageArea (ImageArea* ia)
|
|
{
|
|
|
|
imageArea = ia;
|
|
mainCropWin = ia->getMainCropWindow ();
|
|
|
|
if (mainCropWin) {
|
|
mainCropWin->addCropWindowListener (this);
|
|
}
|
|
}
|
|
|
|
void PreviewWindow::cropPositionChanged (CropWindow* w)
|
|
{
|
|
|
|
queue_draw ();
|
|
}
|
|
|
|
void PreviewWindow::cropWindowSizeChanged (CropWindow* w)
|
|
{
|
|
|
|
queue_draw ();
|
|
}
|
|
|
|
void PreviewWindow::cropZoomChanged (CropWindow* w)
|
|
{
|
|
|
|
queue_draw ();
|
|
}
|
|
|
|
bool PreviewWindow::on_motion_notify_event (GdkEventMotion* event)
|
|
{
|
|
|
|
if (!mainCropWin) {
|
|
return true;
|
|
}
|
|
|
|
int x, y, w, h;
|
|
getObservedFrameArea (x, y, w, h);
|
|
if (x>imgX || y>imgY || w < imgW || h < imgH) {
|
|
bool inside = event->x > x - 6 && event->x < x + w - 1 + 6 && event->y > y - 6 && event->y < y + h - 1 + 6;
|
|
|
|
CursorShape newType = cursor_type;
|
|
|
|
if (isMoving) {
|
|
mainCropWin->remoteMove ((event->x - press_x) / zoom, (event->y - press_y) / zoom);
|
|
press_x = event->x;
|
|
press_y = event->y;
|
|
newType = CSHandClosed;
|
|
} else if (inside) {
|
|
newType = CSHandOpen;
|
|
} else {
|
|
newType = CSArrow;
|
|
}
|
|
|
|
if (newType != cursor_type) {
|
|
cursor_type = newType;
|
|
CursorManager::setWidgetCursor(get_window(), cursor_type);
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
bool PreviewWindow::on_button_press_event (GdkEventButton* event)
|
|
{
|
|
|
|
if (!mainCropWin) {
|
|
return true;
|
|
}
|
|
|
|
int x, y, w, h;
|
|
getObservedFrameArea (x, y, w, h);
|
|
if (x>imgX || y>imgY || w < imgW || h < imgH) {
|
|
|
|
if (!isMoving) {
|
|
isMoving = true;
|
|
|
|
press_x = event->x;
|
|
press_y = event->y;
|
|
|
|
if (cursor_type != CSHandClosed) {
|
|
cursor_type = CSHandClosed;
|
|
CursorManager::setWidgetCursor(get_window(), cursor_type);
|
|
}
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
bool PreviewWindow::on_button_release_event (GdkEventButton* event)
|
|
{
|
|
|
|
if (!mainCropWin) {
|
|
return true;
|
|
}
|
|
|
|
if (isMoving) {
|
|
isMoving = false;
|
|
|
|
if (cursor_type != CSArrow) {
|
|
cursor_type = CSArrow;
|
|
CursorManager::setWidgetCursor(get_window(), cursor_type);
|
|
}
|
|
|
|
mainCropWin->remoteMoveReady ();
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
Gtk::SizeRequestMode PreviewWindow::get_request_mode_vfunc () const
|
|
{
|
|
return Gtk::SIZE_REQUEST_CONSTANT_SIZE;
|
|
}
|
|
|
|
void PreviewWindow::get_preferred_height_vfunc (int &minimum_height, int &natural_height) const
|
|
{
|
|
minimum_height= 50;
|
|
natural_height = 100;
|
|
}
|
|
|
|
void PreviewWindow::get_preferred_width_vfunc (int &minimum_width, int &natural_width) const
|
|
{
|
|
minimum_width = 80;
|
|
natural_width = 120;
|
|
}
|
|
|
|
void PreviewWindow::get_preferred_height_for_width_vfunc (int width, int &minimum_height, int &natural_height) const
|
|
{
|
|
get_preferred_height_vfunc(minimum_height, natural_height);
|
|
}
|
|
|
|
void PreviewWindow::get_preferred_width_for_height_vfunc (int height, int &minimum_width, int &natural_width) const
|
|
{
|
|
get_preferred_width_vfunc (minimum_width, natural_width);
|
|
}
|