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 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111
|
// -*- Mode: c++; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 4; -*-
/* This file is part of the KDE project
Copyright (C) 1998, 1999 Reginald Stadlbauer <reggie@kde.org>
Copyright (C) 2001 Lukas Tinkl <lukas@kde.org>
Copyright (C) 2002 Ariya Hidayat <ariya@kde.org>
Copyright (C) 2005 Laurent Montel <montel@kde.org>
Copyright (C) 2005 Thorsten Zachmann <zachmann@kde.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include <qheader.h>
#include <qtimer.h>
#include <qpopupmenu.h>
#include <qimage.h>
#include <qtabwidget.h>
#include <qtooltip.h>
#include <kwordwrap.h>
#include <kmessagebox.h>
#include <klocale.h>
#include <kinputdialog.h>
#include <knotifyclient.h>
#include <kiconview.h>
#include <kdebug.h>
#include "KPrSideBar.h"
#include "KPrView.h"
#include "KPrDocument.h"
#include "KPrCanvas.h"
#include "KPrPage.h"
#include "KPrObject.h"
#include <qapplication.h>
#include "KPrCommand.h"
#include <qvalidator.h>
#include "KPrFreehandObject.h"
#include "KPrBezierCurveObject.h"
#include "KPrTextObject.h"
#include "KPrPolylineObject.h"
#include "KPrClosedLineObject.h"
#include "KPrGroupObject.h"
QValidator::State KPrRenamePageValidator::validate( QString & input, int& ) const
{
QString str = input.stripWhiteSpace();
if ( str.isEmpty() ) // we want to allow empty titles. Empty == automatic.
return Acceptable;
if ( mStringList.find( str ) == mStringList.end() )
return Acceptable;
else
return Intermediate;
}
class ThumbToolTip : public QToolTip
{
public:
ThumbToolTip( KPrThumbBar *parent )
: QToolTip( parent->viewport() )
, m_thumbBar( parent )
{}
protected:
void maybeTip(const QPoint &pos)
{
QString title;
QRect r( m_thumbBar->tip( pos, title ) );
if (!r.isValid())
return;
tip(r, title);
}
private:
KPrThumbBar *m_thumbBar;
};
class OutlineSlideItem: public KListViewItem
{
public:
OutlineSlideItem( KListView * parent, KPrPage* page, bool _masterPage );
OutlineSlideItem( KListView * parent, OutlineSlideItem *after, KPrPage* page, bool _masterPage );
KPrPage* page() const { return m_page; }
void setPage( KPrPage* p );
void update();
void updateTitle();
private:
KPrPage* m_page;
bool m_masterPage;
};
class OutlineObjectItem: public KListViewItem
{
public:
OutlineObjectItem( OutlineSlideItem * parent, KPrObject* object,
const QString& name = QString::null );
KPrObject* object() const { return m_object; }
void setObject( KPrObject* o );
private:
KPrObject* m_object;
};
class ThumbItem : public QIconViewItem
{
public:
ThumbItem( QIconView *parent, const QString & text, const QPixmap & icon )
: QIconViewItem( parent, text, icon )
{ uptodate = true; }
ThumbItem( QIconView *parent, QIconViewItem *after, const QString & text, const QPixmap & icon )
: QIconViewItem( parent, after, text, icon )
{ uptodate = true; }
virtual bool isUptodate() { return uptodate; };
virtual void setUptodate( bool _uptodate) { uptodate = _uptodate; };
private:
bool uptodate;
};
KPrSideBar::KPrSideBar(QWidget *parent, KPrDocument *d, KPrView *v)
:QTabWidget(parent), m_doc(d), m_view(v)
{
setTabPosition(QTabWidget::Top);
setTabShape(QTabWidget::Triangular);
m_outline = new KPrOutline(this, m_doc, m_view);
addTab(m_outline, i18n("Structure of the presentation", "Outline"));
m_thb = new KPrThumbBar(this, m_doc, m_view);
addTab(m_thb,i18n("Preview"));
//TODO find a better way
connect(m_outline, SIGNAL(showPage(int)),
this, SIGNAL(showPage(int)));
connect(m_thb, SIGNAL(showPage(int)),
this, SIGNAL(showPage(int)));
connect(m_outline, SIGNAL(movePage(int,int)),
this, SIGNAL(movePage(int,int)));
connect(m_outline, SIGNAL(selectPage(int,bool)),
this, SIGNAL(selectPage(int,bool)));
connect(this, SIGNAL(currentChanged(QWidget *)),
this, SLOT(currentChanged(QWidget *)));
}
void KPrSideBar::currentChanged(QWidget *tab)
{
if (tab == m_thb) {
if (!m_thb->uptodate && m_thb->isVisible())
m_thb->rebuildItems();
else
m_thb->refreshItems();
}
}
void KPrSideBar::addItem( int pos )
{
m_outline->addItem( pos );
m_thb->addItem( pos );
}
void KPrSideBar::moveItem( int oldPos, int newPos )
{
m_outline->moveItem( oldPos, newPos );
m_thb->moveItem( oldPos, newPos );
}
void KPrSideBar::removeItem( int pos )
{
m_outline->removeItem( pos );
m_thb->removeItem( pos );
}
void KPrSideBar::updateItem( KPrPage *page )
{
bool sticky = false;
int pos = 0;
if ( page == m_doc->masterPage() )
{
pos = -1;
sticky = true;
}
else
{
pos = m_doc->pageList().findRef( page );
}
m_outline->updateItem( pos, sticky );
m_thb->updateItem( pos, sticky );
}
void KPrSideBar::setViewMasterPage( bool _masterPage )
{
m_outline->setViewMasterPage( _masterPage );
m_thb->setViewMasterPage( _masterPage );
m_outline->rebuildItems();
m_thb->rebuildItems();
}
KPrSideBarBase::KPrSideBarBase(KPrDocument *_doc, KPrView *_view)
: m_doc( _doc ), m_view( _view ), m_viewMasterPage( false )
{
}
void KPrSideBarBase::setViewMasterPage( bool _b )
{
m_viewMasterPage = _b;
}
KPrThumbBar::KPrThumbBar(QWidget *parent, KPrDocument *d, KPrView *v)
:KIconView(parent), KPrSideBarBase( d,v)
{
uptodate = false;
m_offsetX = 0;
m_offsetY = 0;
setArrangement(QIconView::LeftToRight);
setAutoArrange(true);
setSorting(false);
setItemsMovable(false);
setResizeMode(QIconView::Adjust);
m_thumbTip = new ThumbToolTip(this);
connect(this, SIGNAL(currentChanged(QIconViewItem *)),
this, SLOT(itemClicked(QIconViewItem *)));
connect(this, SIGNAL(contentsMoving(int, int)),
this, SLOT(slotContentsMoving(int, int)));
}
KPrThumbBar::~KPrThumbBar()
{
delete m_thumbTip;
}
void KPrThumbBar::setCurrentPage( int pg )
{
for ( QIconViewItem *it = firstItem(); it; it = it->nextItem() )
{
if ( it->text().toInt() - 1 == pg ) {
blockSignals( true );
setCurrentItem( it );
setSelected( it, FALSE ); // to avoid the blue "selected"-mark
ensureItemVisible(it);
refreshItems();
blockSignals( false );
return;
}
}
}
QRect KPrThumbBar::tip(const QPoint &pos, QString &title)
{
QIconViewItem *item = findItem(viewportToContents(pos));
if (!item)
return QRect(0, 0, -1, -1);
int pagenr = item->index();
title = m_doc->pageList().at(pagenr)->pageTitle();
QRect r = item->pixmapRect(FALSE);
r = QRect(contentsToViewport(QPoint(r.x(), r.y())), QSize(r.width(), r.height()));
return r;
}
void KPrThumbBar::rebuildItems()
{
kdDebug()<<" void KPrThumbBar::rebuildItems() beofre \n";
if( !isVisible())
return;
kdDebug(33001) << "KPrThumbBar::rebuildItems" << endl;
QApplication::setOverrideCursor( Qt::waitCursor );
clear();
if ( m_viewMasterPage )
{
}
else
{
for ( unsigned int i = 0; i < m_doc->getPageNums(); i++ ) {
// calculate the size of the thumb
QRect rect = m_doc->pageList().at(i)->getZoomPageRect( );
int w = rect.width();
int h = rect.height();
if ( w > h ) {
w = 130;
float diff = (float)rect.width() / (float)w;
h = (int) (rect.height() / diff);
if ( h > 120 ) {
h = 120;
float diff = (float)rect.height() / (float)h;
w = (int) (rect.width() / diff);
}
}
else if ( w < h ) {
h = 130;
float diff = (float)rect.height() / (float)h;
w = (int) (rect.width() / diff);
if ( w > 120 ) {
w = 120;
float diff = (float)rect.width() / (float)w;
h = (int) (rect.height() / diff);
}
}
else if ( w == h ) {
w = 130;
h = 130;
}
// draw an empty thumb
QPixmap pix(w, h);
pix.fill( Qt::white );
QPainter p(&pix);
p.setPen(Qt::black);
p.drawRect(pix.rect());
ThumbItem *item = new ThumbItem(static_cast<QIconView *>(this), QString::number(i+1), pix);
item->setUptodate( false );
item->setDragEnabled(false); //no dragging for now
}
QTimer::singleShot( 10, this, SLOT( slotRefreshItems() ) );
}
uptodate = true;
QApplication::restoreOverrideCursor();
}
void KPrThumbBar::refreshItems(bool offset)
{
QRect vRect = visibleRect();
if ( offset )
vRect.moveBy( m_offsetX, m_offsetY );
else
vRect.moveBy( contentsX(), contentsY() );
QIconViewItem *it = findFirstVisibleItem( vRect );
while ( it )
{
kdDebug(33001) << "visible page = " << it->text().toInt() << endl;
if ( ! dynamic_cast<ThumbItem *>(it)->isUptodate( ) ){
//todo refresh picture
it->setPixmap( getSlideThumb( it->text().toInt() - 1 ) );
static_cast<ThumbItem *>(it)->setUptodate( true );
}
if ( it == findLastVisibleItem( vRect ) )
break;
it = it->nextItem();
}
m_offsetX = 0;
m_offsetY = 0;
}
void KPrThumbBar::updateItem( int pagenr /* 0-based */, bool sticky )
{
if ( m_viewMasterPage )
return;
if ( !uptodate )
return;
int pagecnt = 0;
// calculate rect of visible objects
QRect vRect = visibleRect();
vRect.moveBy( contentsX(), contentsY() );
// Find icon
QIconViewItem *it = firstItem();
do
{
if ( it == findFirstVisibleItem( vRect ) ) {
do
{
if ( sticky || it->text().toInt() == pagenr + 1 ) {
it->setPixmap(getSlideThumb( pagecnt ));
static_cast<ThumbItem *>(it)->setUptodate( true );
if ( !sticky )
return;
}
if ( it == findLastVisibleItem( vRect ) )
break;
pagecnt++;
it = it->nextItem();
} while ( true );
}
else if ( sticky || it->text().toInt() == pagenr + 1 ) {
static_cast<ThumbItem *>(it)->setUptodate( false );
if ( !sticky )
return;
}
pagecnt++;
it = it->nextItem();
} while ( it );
if ( ! sticky )
kdWarning(33001) << "Item for page " << pagenr << " not found" << endl;
}
// add a thumb item without recreating all thumbs
void KPrThumbBar::addItem( int pos )
{
kdDebug(33001)<< "KPrThumbBar::addItem" << endl;
int page = 0;
for ( QIconViewItem *it = firstItem(); it; it = it->nextItem() ) {
// find page which should move
// do stuff because a item can not be insert at the beginning
if ( pos == 0 && page == pos ){
ThumbItem *item = new ThumbItem(static_cast<QIconView *>(this), it, QString::number(2), getSlideThumb(1));
item->setDragEnabled(false); //no dragging for now
it->setPixmap(getSlideThumb( 0 ));
// move on to next item as we have inserted one
it = it->nextItem();
}
else if ( (page + 1) == pos ) {
ThumbItem *item = new ThumbItem(static_cast<QIconView *>(this), it, QString::number(pos+1), getSlideThumb(pos));
item->setDragEnabled(false); //no dragging for now
it = it->nextItem();
}
// update page numbers
if ( page >= pos )
it->setText( QString::number(page+2) );
page++;
}
}
// moves a item without recreating all pages
void KPrThumbBar::moveItem( int oldPos, int newPos )
{
kdDebug(33001)<< "KPrThumbBar::moveItem " << oldPos << " to " << newPos << endl;
int page = 0;
QIconViewItem *after = 0;
QIconViewItem *take = 0;
for ( QIconViewItem *it = firstItem(); it; it = it->nextItem() ) {
// find page which should move
if ( page == oldPos )
take = it;
// find position where page should be insert
// as a page can not be insert at the beginning get the first one
// the page to get depends on if a page is moved forward / backwards
if ( page == newPos )
after = page == 0 ? it : newPos > oldPos ? it : it->prevItem();
page++;
}
if ( ! take )
return;
// workaround for a bug in qt 3.1.1 insertItem dose not work.
// TODO remove workaround when qt 3.1.2 comes out tz
//takeItem( take );
//insertItem( take, after);
ThumbItem *item = new ThumbItem( static_cast<QIconView *>(this), after, QString::number( newPos ), *(take->pixmap()) );
item->setDragEnabled(false); //no dragging for now
delete take;
// update the thumbs if new pos was 0
// because it was insert after the first one
if ( newPos == 0 ) {
//todo do not recreate the pics
after->setPixmap(getSlideThumb( 0 ));
//take->setPixmap(getSlideThumb( 1 ));
item->setPixmap(getSlideThumb( 1 ));
}
//write the new page numbers
int lowPage = oldPos > newPos ? newPos : oldPos;
int highPage = oldPos < newPos ? newPos : oldPos;
page = 0;
for ( QIconViewItem *it = firstItem(); it; it = it->nextItem() ) {
if ( page >= lowPage && page <= highPage)
it->setText( QString::number(page+1) );
page++;
}
}
void KPrThumbBar::removeItem( int pos )
{
kdDebug(33001)<< "KPrThumbBar::removeItem" << endl;
int page = 0;
bool change = false;
QIconViewItem *itemToDelete = 0;
for ( QIconViewItem *it = firstItem(); it; it = it->nextItem() ) {
if ( page == pos ) {
itemToDelete = it;
if ( it->nextItem() )
it = it->nextItem();
change = true;
}
if ( change )
it->setText( QString::number( page + 1 ) );
page++;
}
delete itemToDelete;
}
QPixmap KPrThumbBar::getSlideThumb(int slideNr) const
{
//kdDebug(33001) << "KPrThumbBar::getSlideThumb: " << slideNr << endl;
QPixmap pix( 10, 10 );
m_view->getCanvas()->drawPageInPix( pix, slideNr, 60 );
int w = pix.width();
int h = pix.height();
if ( w > h ) {
w = 130;
h = 120;
}
else if ( w < h ) {
w = 120;
h = 130;
}
else if ( w == h ) {
w = 130;
h = 130;
}
const QImage img(pix.convertToImage().smoothScale( w, h, QImage::ScaleMin ));
pix.convertFromImage(img);
// draw a frame around the thumb to show its size
QPainter p(&pix);
p.setPen(Qt::black);
p.drawRect(pix.rect());
return pix;
}
void KPrThumbBar::itemClicked(QIconViewItem *i)
{
if ( !i )
return;
emit showPage( i->index() );
}
void KPrThumbBar::slotContentsMoving(int x, int y)
{
m_offsetX = x;
m_offsetY = y;
kdDebug(33001) << "offset x,y = " << x << ", " << y << endl;
refreshItems( true );
}
void KPrThumbBar::slotRefreshItems()
{
refreshItems();
}
OutlineSlideItem::OutlineSlideItem( KListView* parent, KPrPage* _page, bool _masterPage )
: KListViewItem( parent ), m_page( _page ), m_masterPage( _masterPage )
{
setDragEnabled(true);
setPage( _page );
setPixmap( 0, KPBarIcon( "slide" ) );
}
OutlineSlideItem::OutlineSlideItem( KListView* parent, OutlineSlideItem * after, KPrPage* _page, bool _masterPage )
: KListViewItem( parent, after ), m_page( _page ), m_masterPage( _masterPage )
{
setDragEnabled(true);
setPage( _page );
setPixmap( 0, KPBarIcon( "slide" ) );
}
void OutlineSlideItem::setPage( KPrPage* p )
{
if( !p ) return;
m_page = p;
update();
}
void OutlineSlideItem::update()
{
if( !m_page ) return;
KPrDocument *doc = m_page->kPresenterDoc();
updateTitle();
// add all objects
OutlineObjectItem *ooi = 0;
while ( ( ooi = dynamic_cast<OutlineObjectItem*>( this->firstChild() ) ) )
delete ooi;
// keep selected object
ooi = 0;
QPtrListIterator<KPrObject> it( m_page->objectList() );
if ( !m_masterPage )
{
for ( ; it.current(); ++it ) {
OutlineObjectItem *item = new OutlineObjectItem( this, it.current() );
item->setDragEnabled( false );
if ( it.current()->isSelected() )
ooi = item;
}
}
else
{
KPrObject* header = 0;
KPrObject* footer = 0;
// add sticky objects, exclude header and footer
it = doc->masterPage()->objectList();
for ( ; it.current() ; ++it )
{
KPrObject* object = it.current();
if( m_page->hasHeader() && doc->isHeader( object ) )
header = object;
else if( m_page->hasFooter() && doc->isFooter( object ) )
footer = object;
else if( !doc->isHeader( object ) && !doc->isFooter( object ) ) {
OutlineObjectItem *item = new OutlineObjectItem( this, object );
if ( object->isSelected() )
ooi = item;
}
}
// add header and footer (if any)
if ( footer ) {
OutlineObjectItem *item = new OutlineObjectItem( this, footer, i18n("Footer") );
if ( footer->isSelected() )
ooi = item;
}
if ( header ) {
OutlineObjectItem *item = new OutlineObjectItem( this, header, i18n("Header") );
if ( header->isSelected() )
ooi = item;
}
}
// select selected object the page is necessary that a
// sticky object is selected on the active page
if ( ooi && doc->activePage() == m_page )
(ooi->listView())->setSelected( ooi, true );
}
void OutlineSlideItem::updateTitle()
{
QString title = m_page->pageTitle();
if ( ! m_page->isSlideSelected() )
title = i18n( "(%1)" ).arg( title );
setText( 0, title );
}
OutlineObjectItem::OutlineObjectItem( OutlineSlideItem* parent, KPrObject* _object,
const QString& name )
: KListViewItem( parent ), m_object( _object )
{
setObject( m_object );
setDragEnabled( false );
QString objectName = name.isEmpty() ? m_object->getObjectName() : name;
//if( sticky ) objectName += i18n(" (Sticky)" );
setText( 0, objectName );
}
void OutlineObjectItem::setObject( KPrObject* object )
{
if( !object ) return;
m_object = object;
switch ( m_object->getType() ) {
case OT_PICTURE:
setPixmap( 0, KPBarIcon( "frame_image" ) );
break;
case OT_LINE:
setPixmap( 0, KPBarIcon( "mini_line" ) );
break;
case OT_RECT:
setPixmap( 0, KPBarIcon( "mini_rect" ) );
break;
case OT_ELLIPSE:
setPixmap( 0, KPBarIcon( "mini_circle" ) );
break;
case OT_TEXT:
setPixmap( 0, KPBarIcon( "frame_text" ) );
break;
case OT_AUTOFORM:
setPixmap( 0, KPBarIcon( "mini_autoform" ) );
break;
case OT_CLIPART:
setPixmap( 0, KPBarIcon( "mini_clipart" ) );
break;
case OT_PIE:
setPixmap( 0, KPBarIcon( "mini_pie" ) );
break;
case OT_PART:
setPixmap( 0, KPBarIcon( "frame_query" ) );
break;
case OT_FREEHAND:
setPixmap( 0, KPBarIcon( "freehand" ) );
break;
case OT_POLYLINE:
setPixmap( 0, KPBarIcon( "polyline" ) );
break;
case OT_QUADRICBEZIERCURVE:
setPixmap( 0, KPBarIcon( "quadricbeziercurve" ) );
break;
case OT_CUBICBEZIERCURVE:
setPixmap( 0, KPBarIcon( "cubicbeziercurve" ) );
break;
case OT_POLYGON:
setPixmap( 0, KPBarIcon( "mini_polygon" ) );
break;
case OT_CLOSED_LINE: {
QString name = m_object->getTypeString();
if ( name == i18n( "Closed Freehand" ) )
setPixmap( 0, KPBarIcon( "closed_freehand" ) );
else if ( name == i18n( "Closed Polyline" ) )
setPixmap( 0, KPBarIcon( "closed_polyline" ) );
else if ( name == i18n( "Closed Quadric Bezier Curve" ) )
setPixmap( 0, KPBarIcon( "closed_quadricbeziercurve" ) );
else if ( name == i18n( "Closed Cubic Bezier Curve" ) )
setPixmap( 0, KPBarIcon( "closed_cubicbeziercurve" ) );
} break;
case OT_GROUP:
setPixmap( 0, KPBarIcon( "group" ) );
break;
default:
break;
}
}
KPrOutline::KPrOutline( QWidget *parent, KPrDocument *d, KPrView *v )
: KListView( parent ), KPrSideBarBase( d, v)
{
rebuildItems();
setSorting( -1 );
header()->hide();
addColumn( i18n( "Slide" ) );
setSizePolicy( QSizePolicy( QSizePolicy::Minimum, QSizePolicy::Expanding ) );
connect( this, SIGNAL( currentChanged( QListViewItem * ) ), this, SLOT( itemClicked( QListViewItem * ) ) );
connect( this, SIGNAL( rightButtonPressed( QListViewItem *, const QPoint &, int ) ),
this, SLOT( rightButtonPressed( QListViewItem *, const QPoint &, int ) ) );
connect( this, SIGNAL( contextMenu( KListView*, QListViewItem*, const QPoint& ) ),
this, SLOT( slotContextMenu( KListView*, QListViewItem*, const QPoint&) ) );
connect( this, SIGNAL( doubleClicked ( QListViewItem * )),
this, SLOT(renamePageTitle()));
connect( this, SIGNAL( dropped( QDropEvent*, QListViewItem*, QListViewItem* ) ),
this, SLOT( slotDropped( QDropEvent*, QListViewItem*, QListViewItem* ) ));
setItemsMovable( false );
setDragEnabled( true );
setAcceptDrops( true );
setDropVisualizer( true );
setFullWidth( true );
this->setRootIsDecorated( true );
}
KPrOutline::~KPrOutline()
{
}
void KPrOutline::rebuildItems()
{
clear();
if ( m_viewMasterPage )
{
KPrPage *page=m_doc->masterPage();
new OutlineSlideItem( this, page, true );
}
else
{
// Rebuild all the items
for ( int i = m_doc->getPageNums() - 1; i >= 0; --i ) {
KPrPage *page=m_doc->pageList().at( i );
new OutlineSlideItem( this, page, false );
}
}
}
// given the page number (0-based), find associated slide item
// returns 0 upon stupid things (e.g. invalid page number)
OutlineSlideItem* KPrOutline::slideItem( int pageNumber )
{
QListViewItem* item = firstChild();
for( int index = 0; item; ++index, item = item->nextSibling() ) {
if( index == pageNumber )
return dynamic_cast<OutlineSlideItem*>( item );
}
return 0;
}
// update the KPrOutline item, the title may have changed
void KPrOutline::updateItem( int pagenr /* 0-based */, bool sticky )
{
if ( ! sticky ) {
OutlineSlideItem *item = slideItem( pagenr );
if( item ) {
blockSignals(true);
item->update();
blockSignals(false);
}
} else {
blockSignals(true);
for( QListViewItem *item = this->firstChild(); item; item = item->nextSibling() )
dynamic_cast<OutlineSlideItem*>(item)->update();
blockSignals(false);
}
}
void KPrOutline::addItem( int pos )
{
kdDebug(33001)<< "KPrOutline::addItem" << endl;
KPrPage *page=m_doc->pageList().at( pos );
OutlineSlideItem *item;
if ( pos == 0 ) {
item = new OutlineSlideItem( this, page,m_viewMasterPage );
}
else {
OutlineSlideItem *after = slideItem( pos - 1 );
item = new OutlineSlideItem( this, after, page,m_viewMasterPage );
}
item = dynamic_cast<OutlineSlideItem*>( item->nextSibling() );
// update title
for( ; item; item = dynamic_cast<OutlineSlideItem*>( item->nextSibling() ) )
item->updateTitle();
}
// move an KPrOutline Item so that not the hole list has to be recreated
void KPrOutline::moveItem( int oldPos, int newPos )
{
kdDebug(33001)<< "KPrOutline::moveItem " << oldPos << " to " << newPos << endl;
int lowPage = oldPos > newPos ? newPos : oldPos;
int highPage = oldPos < newPos ? newPos : oldPos;
OutlineSlideItem *item = dynamic_cast<OutlineSlideItem*>( firstChild() );
QListViewItem *itemToMove = 0;
QListViewItem *itemAfter = 0;
// moving backwards
if ( newPos < oldPos )
newPos--;
for ( int index = 0; item; ++index, item = dynamic_cast<OutlineSlideItem*>( item->nextSibling() ) )
{
if ( index == oldPos )
itemToMove = item;
if ( index == newPos )
itemAfter = item;
if ( index >= lowPage && index <= highPage )
item->updateTitle();
}
KListView::moveItem( itemToMove, 0, itemAfter );
}
void KPrOutline::removeItem( int pos )
{
kdDebug(33001)<< "KPrOutline::removeItem" << endl;
OutlineSlideItem* item = slideItem( pos );
if( !item ) return;
OutlineSlideItem* temp = dynamic_cast<OutlineSlideItem*>(item->nextSibling());
delete item;
for ( item = temp; item; item = dynamic_cast<OutlineSlideItem*>( item->nextSibling() ) )
item->updateTitle();
}
void KPrOutline::itemClicked( QListViewItem *item )
{
if( !item ) return;
// check if we need to show chosen slide
OutlineSlideItem* slideItem = dynamic_cast<OutlineSlideItem*>(item);
if( slideItem )
{
KPrPage* page = slideItem->page();
if( !page ) return;
if ( !m_viewMasterPage )
emit showPage( m_doc->pageList().findRef( page ) );
}
// check if we need to show chosen object
OutlineObjectItem* objectItem = dynamic_cast<OutlineObjectItem*>(item);
if( objectItem )
{
KPrObject *object = objectItem->object();
if( !object ) return;
// ensure the owner slide is shown first
OutlineSlideItem* slideItem = dynamic_cast<OutlineSlideItem*>(objectItem->parent());
if( slideItem && m_doc->activePage() != slideItem->page() )
{
KPrPage* page = slideItem->page();
if( !page ) return;
if ( !m_viewMasterPage )
emit showPage( m_doc->pageList().findRef( page ) );
}
// select the object, make sure it's visible
m_doc->deSelectAllObj();
m_view->getCanvas()->selectObj( object );
m_view->showObjectRect( object );
m_doc->repaint( false );
}
}
/**
* The listview no longer moves the item by itself. It just calls m_doc->movePage
* which then moves the item. At the moment the method only works as long as
* only one object is moves.
* When an item is about to move (using drag-and-drop), it makes shure that
* it's not moved right after an object.
*/
void KPrOutline::slotDropped( QDropEvent * /* e */, QListViewItem *parent, QListViewItem *target )
{
kdDebug(33001) << "slotDropped" << endl;
/* slide doesn't have parent (always 0)
* Only slides can move at the moment, objects can't. */
if ( parent )
return;
// This code is taken from KListView
for (QListViewItem *i = firstChild(), *iNext = 0; i != 0; i = iNext)
{
iNext = i->itemBelow();
if ( !i->isSelected() )
continue;
// don't drop an item after itself, or else
// it moves to the top of the list
if ( i == target )
continue;
i->setSelected( false );
// don't move the item as it is allready
moveItem(i, parent, target );
// Only one item can be moved
break;
}
}
// We have to overwrite this method as it checks if an item is movable
// and we have disabled it.
bool KPrOutline::acceptDrag( QDropEvent* e ) const
{
return acceptDrops() && (e->source()==viewport());
}
void KPrOutline::setCurrentPage( int pg )
{
OutlineSlideItem *item = slideItem( pg );
if( item && ( item!=currentItem()->parent() ) )
{
blockSignals( true );
setCurrentItem( item );
setSelected( item, true );
ensureItemVisible( item );
blockSignals( false );
}
}
void KPrOutline::contentsDropEvent( QDropEvent *e )
{
disconnect( this, SIGNAL( currentChanged( QListViewItem * ) ), this, SLOT( itemClicked( QListViewItem * ) ) );
KListView::contentsDropEvent( e );
connect( this, SIGNAL( currentChanged( QListViewItem * ) ), this, SLOT( itemClicked( QListViewItem * ) ) );
}
void KPrOutline::moveItem( QListViewItem *i, QListViewItem *, QListViewItem *newAfter )
{
OutlineSlideItem* srcItem = dynamic_cast<OutlineSlideItem*>( i );
if ( !srcItem )
return;
int num = m_doc->pageList().findRef( srcItem->page() );
int numNow = 0;
if ( newAfter )
{
OutlineSlideItem* dstItem = dynamic_cast<OutlineSlideItem*>( newAfter );
if( !dstItem )
return;
numNow = m_doc->pageList().findRef( dstItem->page() );
if ( numNow < num )
numNow++;
}
if ( num!=numNow )
m_doc->movePage( num, numNow );
}
void KPrOutline::rightButtonPressed( QListViewItem *, const QPoint &pnt, int )
{
if ( !m_doc->isReadWrite() || m_viewMasterPage ) return;
QListViewItem *item = QListView::selectedItem();
if( !item ) return;
OutlineSlideItem* slideItem = dynamic_cast<OutlineSlideItem*>(item);
if( slideItem ) {
m_view->openPopupMenuSideBar(pnt);
} else {
OutlineObjectItem* objectItem = dynamic_cast<OutlineObjectItem*>(item);
if( objectItem )
{
KPrObject * kpobject = objectItem->object();
if( !kpobject ) {
return;
}
KPrCanvas* canvas = static_cast<KPrCanvas*>(m_view->canvas());
canvas->deSelectAllObj();
canvas->selectObj( kpobject );
canvas->objectPopup( kpobject, pnt );
}
}
}
void KPrOutline::slotContextMenu( KListView*, QListViewItem* item, const QPoint& p )
{
rightButtonPressed( item, p, 0 );
}
void KPrOutline::renamePageTitle()
{
QListViewItem *item = QListView::selectedItem();
if( !item || m_viewMasterPage) return;
OutlineSlideItem* slideItem = dynamic_cast<OutlineSlideItem*>(item);
if( !slideItem ) return;
KPrPage* page = slideItem->page();
if( !page ) return;
bool ok = false;
QString activeTitle = item->text( 0 );
QStringList page_titles;
KPrPage *it;
for ( it = m_doc->pageList().first(); it; it = m_doc->pageList().next() )
if ( it->pageTitle() != activeTitle )
page_titles.append( it->pageTitle() );
KPrRenamePageValidator validator( page_titles );
QString newTitle = KInputDialog::getText( i18n("Rename Slide"),
i18n("Slide title:"), activeTitle, &ok, this, 0,
&validator );
// Have a different name ?
if ( ok ) { // User pushed an OK button.
if ( newTitle != activeTitle ) { // Title changed.
KPrChangeTitlePageNameCommand *cmd=new KPrChangeTitlePageNameCommand( i18n("Rename Slide"),
m_doc, activeTitle, newTitle.stripWhiteSpace(), page );
cmd->execute();
m_doc->addCommand(cmd);
}
}
}
QDragObject* KPrOutline::dragObject()
{
if( !selectedItem()->dragEnabled() ) {
return 0;
}
return KListView::dragObject();
}
#include "KPrSideBar.moc"
|