-rw-r--r-- | core/applets/screenshotapplet/screenshot.cpp | 39 |
1 files changed, 14 insertions, 25 deletions
diff --git a/core/applets/screenshotapplet/screenshot.cpp b/core/applets/screenshotapplet/screenshot.cpp index f2cc2c5..7e2fdf0 100644 --- a/core/applets/screenshotapplet/screenshot.cpp +++ b/core/applets/screenshotapplet/screenshot.cpp | |||
@@ -391,25 +391,25 @@ void ScreenshotControl::savePixmap() | |||
391 | lnk.setName( fi.fileName()); //sets file name | 391 | lnk.setName( fi.fileName()); //sets file name |
392 | 392 | ||
393 | if (!lnk.writeLink()) | 393 | if (!lnk.writeLink()) |
394 | qDebug("Writing doclink did not work"); | 394 | qDebug("Writing doclink did not work"); |
395 | 395 | ||
396 | } | 396 | } |
397 | 397 | ||
398 | QPEApplication::beep(); | 398 | QPEApplication::beep(); |
399 | } | 399 | } |
400 | 400 | ||
401 | void ScreenshotControl::performGrab() | 401 | void ScreenshotControl::performGrab() |
402 | { | 402 | { |
403 | snapshot = QPixmap::grabWindow( QPEApplication::desktop()->winId(), 0, 0, QApplication::desktop()->width(), QApplication::desktop()->height() ); | 403 | snapshot = QPixmap::grabWindow( QPEApplication::desktop()->winId(), 0, 0, QApplication::desktop()->width(), QApplication::desktop()->height() ); |
404 | 404 | ||
405 | if (buttonPushed == 1) { | 405 | if (buttonPushed == 1) { |
406 | qDebug("grabbing screen"); | 406 | qDebug("grabbing screen"); |
407 | grabTimer->stop(); | 407 | grabTimer->stop(); |
408 | show(); | 408 | show(); |
409 | qApp->processEvents(); | 409 | qApp->processEvents(); |
410 | savePixmap(); | 410 | savePixmap(); |
411 | } | 411 | } |
412 | else { | 412 | else { |
413 | grabTimer->stop(); | 413 | grabTimer->stop(); |
414 | 414 | ||
415 | struct sockaddr_in raddr; | 415 | struct sockaddr_in raddr; |
@@ -419,76 +419,65 @@ void ScreenshotControl::performGrab() | |||
419 | 419 | ||
420 | if (( rhost_info = (struct hostent *) ::gethostbyname ((char *) SCAP_hostname )) != 0 ) { | 420 | if (( rhost_info = (struct hostent *) ::gethostbyname ((char *) SCAP_hostname )) != 0 ) { |
421 | ::memset ( &raddr, 0, sizeof (struct sockaddr_in)); | 421 | ::memset ( &raddr, 0, sizeof (struct sockaddr_in)); |
422 | ::memcpy ( &raddr. sin_addr, rhost_info-> h_addr, rhost_info-> h_length ); | 422 | ::memcpy ( &raddr. sin_addr, rhost_info-> h_addr, rhost_info-> h_length ); |
423 | raddr. sin_family = rhost_info-> h_addrtype; | 423 | raddr. sin_family = rhost_info-> h_addrtype; |
424 | raddr. sin_port = htons ( SCAP_port ); | 424 | raddr. sin_port = htons ( SCAP_port ); |
425 | 425 | ||
426 | if (( sock = ::socket ( AF_INET, SOCK_STREAM, 0 )) >= 0 ) | 426 | if (( sock = ::socket ( AF_INET, SOCK_STREAM, 0 )) >= 0 ) |
427 | { | 427 | { |
428 | if ( ::connect ( sock, (struct sockaddr *) & raddr, sizeof (struct sockaddr)) >= 0 ) { | 428 | if ( ::connect ( sock, (struct sockaddr *) & raddr, sizeof (struct sockaddr)) >= 0 ) { |
429 | QString header; | 429 | QString header; |
430 | 430 | ||
431 | QPixmap pix = ( snapshot.width() > snapshot.height() ) ? snapshot : snapshot.xForm( QWMatrix().rotate(90) ); | ||
432 | QImage img = pix.convertToImage().convertDepth( 16 ); // could make that also depth independent, if hh.org/scap can handle it | ||
433 | |||
431 | header = "POST /scap/capture.cgi?%1+%2 HTTP/1.1\n" // 1: model / 2: user | 434 | header = "POST /scap/capture.cgi?%1+%2 HTTP/1.1\n" // 1: model / 2: user |
432 | "Content-length: 153600\n" | 435 | "Content-length: %3\n" // 3: content length |
433 | "Content-Type: image/gif\n" | 436 | "Content-Type: image/gif\n" |
434 | "Host: %4\n" // 3: scap host | 437 | "Host: %4\n" // 4: scap host |
435 | "\n"; | 438 | "\n"; |
436 | 439 | ||
437 | header = header. arg ( "" ). arg ( ::getenv ( "USER" )). arg ( SCAP_hostname ); | 440 | header = header.arg( "" ).arg( ::getenv ( "USER" ) ).arg( img.numBytes() ).arg( SCAP_hostname ); |
438 | |||
439 | QPixmap pix; | ||
440 | 441 | ||
441 | if ( snapshot. width ( ) == 320 && snapshot. height ( ) == 240 ) | 442 | if ( !pix.isNull() ) |
442 | { | ||
443 | pix = snapshot; | ||
444 | } | ||
445 | else if ( snapshot. width ( ) == 240 && snapshot. height ( ) == 320 ) | ||
446 | { | 443 | { |
447 | pix = snapshot. xForm ( QWMatrix ( ). rotate ( 90 )); | 444 | const char *ascii = header.latin1( ); |
448 | } | 445 | uint ascii_len = ::strlen( ascii ); |
449 | |||
450 | if ( !pix. isNull ( )) | ||
451 | { | ||
452 | const char *ascii = header. latin1 ( ); | ||
453 | uint ascii_len = ::strlen ( ascii ); | ||
454 | |||
455 | ::write ( sock, ascii, ascii_len ); | 446 | ::write ( sock, ascii, ascii_len ); |
456 | 447 | ::write ( sock, img.bits(), img.numBytes() ); | |
457 | QImage img = pix. convertToImage ( ). convertDepth ( 16 ); | ||
458 | ::write ( sock, img. bits ( ), img.numBytes ( )); | ||
459 | 448 | ||
460 | ok = true; | 449 | ok = true; |
461 | } | 450 | } |
462 | } | 451 | } |
463 | ::close ( sock ); | 452 | ::close ( sock ); |
464 | } | 453 | } |
465 | } | 454 | } |
466 | if ( ok ) | 455 | if ( ok ) |
467 | QMessageBox::information ( 0, tr( "Success" ), QString ( "<p>%1</p>" ). arg ( tr( "Screenshot was uploaded to %1" )). arg ( SCAP_hostname )); | 456 | QMessageBox::information( 0, tr( "Success" ), QString( "<p>%1</p>" ).arg ( tr( "Screenshot was uploaded to %1" )).arg( SCAP_hostname )); |
468 | else | 457 | else |
469 | QMessageBox::warning ( 0, tr( "Error" ), QString ( "<p>%1</p>" ). arg ( tr( "Connection to %1 failed." )). arg ( SCAP_hostname )); | 458 | QMessageBox::warning( 0, tr( "Error" ), QString( "<p>%1</p>" ).arg( tr( "Connection to %1 failed." )).arg( SCAP_hostname )); |
470 | } | 459 | } |
471 | 460 | ||
472 | } | 461 | } |
473 | 462 | ||
474 | 463 | ||
475 | 464 | ||
476 | //=========================================================================== | 465 | //=========================================================================== |
477 | 466 | ||
478 | ScreenshotApplet::ScreenshotApplet( QWidget *parent, const char *name ) | 467 | ScreenshotApplet::ScreenshotApplet( QWidget *parent, const char *name ) |
479 | : QWidget( parent, name ) | 468 | : QWidget( parent, name ) |
480 | { | 469 | { |
481 | setFixedWidth( AppLnk::smallIconSize()); | 470 | setFixedWidth( AppLnk::smallIconSize()); |
482 | 471 | ||
483 | QImage img = (const char **)snapshot_xpm; | 472 | QImage img = (const char **)snapshot_xpm; |
484 | img = img.smoothScale(AppLnk::smallIconSize(), AppLnk::smallIconSize()); | 473 | img = img.smoothScale(AppLnk::smallIconSize(), AppLnk::smallIconSize()); |
485 | m_icon.convertFromImage(img); | 474 | m_icon.convertFromImage(img); |
486 | } | 475 | } |
487 | 476 | ||
488 | ScreenshotApplet::~ScreenshotApplet() | 477 | ScreenshotApplet::~ScreenshotApplet() |
489 | { | 478 | { |
490 | } | 479 | } |
491 | 480 | ||
492 | void ScreenshotApplet::mousePressEvent( QMouseEvent *) | 481 | void ScreenshotApplet::mousePressEvent( QMouseEvent *) |
493 | { | 482 | { |
494 | ScreenshotControl *sc = new ScreenshotControl ( ); | 483 | ScreenshotControl *sc = new ScreenshotControl ( ); |