Fix incorrectly renamed strings

pull/1/head
Slávek Banko 9 years ago
parent 98a0195cc5
commit f9f32cc93e

@ -85,7 +85,7 @@ void KisTexturePainter::createTexture( TQ_INT32 x, TQ_INT32 y, TQ_INT32 w, TQ
} }
} }
//Qt::Vertical blurring was commented out in wetdreams, the effect seems to be achievable // Vertical blurring was commented out in wetdreams, the effect seems to be achievable
// without this. // without this.
// I think this is because with blur in one direction, you get more the effect of // I think this is because with blur in one direction, you get more the effect of
// having 'fibers' in your paper // having 'fibers' in your paper

@ -38,7 +38,7 @@ void KisBoundary::generateBoundary(int w, int h) {
KisColorSpace* cs = m_device->colorSpace(); KisColorSpace* cs = m_device->colorSpace();
//Qt::Horizontal // Horizontal
for (int currentY = - 1; currentY < h; currentY++) { for (int currentY = - 1; currentY < h; currentY++) {
KisHLineIteratorPixel topIt = m_device->createHLineIterator(0, currentY, w, false); KisHLineIteratorPixel topIt = m_device->createHLineIterator(0, currentY, w, false);
KisHLineIteratorPixel botIt = m_device->createHLineIterator(0, currentY + 1, w, false); KisHLineIteratorPixel botIt = m_device->createHLineIterator(0, currentY + 1, w, false);
@ -59,7 +59,7 @@ void KisBoundary::generateBoundary(int w, int h) {
} }
} }
//Qt::Vertical // Vertical
for (int currentX = - 1; currentX < w; currentX++) { for (int currentX = - 1; currentX < w; currentX++) {
KisVLineIteratorPixel leftIt = m_device->createVLineIterator(currentX, 0, h, false); KisVLineIteratorPixel leftIt = m_device->createVLineIterator(currentX, 0, h, false);
KisVLineIteratorPixel rightIt = m_device->createVLineIterator(currentX + 1, 0, h, false); KisVLineIteratorPixel rightIt = m_device->createVLineIterator(currentX + 1, 0, h, false);

@ -121,20 +121,20 @@ KisEmbossInAllDirectionsFilter::KisEmbossInAllDirectionsFilter()
} }
KisEmbossHorizontalVerticalFilter::KisEmbossHorizontalVerticalFilter() KisEmbossHorizontalVerticalFilter::KisEmbossHorizontalVerticalFilter()
: KisConvolutionConstFilter(id(), "emboss", i18n("EmbossQt::Horizontal &&Qt::Vertical")) : KisConvolutionConstFilter(id(), "emboss", i18n("Emboss Horizontal &&Qt::Vertical"))
{ {
m_matrix = createKernel( 0, -1, 0 , -1, 4, -1 , 0, -1, 0, 1, 127); m_matrix = createKernel( 0, -1, 0 , -1, 4, -1 , 0, -1, 0, 1, 127);
m_channelFlags = KisChannelInfo::FLAG_COLOR; m_channelFlags = KisChannelInfo::FLAG_COLOR;
} }
KisEmbossVerticalFilter::KisEmbossVerticalFilter() KisEmbossVerticalFilter::KisEmbossVerticalFilter()
: KisConvolutionConstFilter(id(), "emboss", i18n("EmbossQt::Vertical Only")) : KisConvolutionConstFilter(id(), "emboss", i18n("Emboss Vertical Only"))
{ {
m_matrix = createKernel( 0, -1, 0 , 0, 2, 0 , 0, -1, 0, 1, 127); m_matrix = createKernel( 0, -1, 0 , 0, 2, 0 , 0, -1, 0, 1, 127);
} }
KisEmbossHorizontalFilter::KisEmbossHorizontalFilter() : KisEmbossHorizontalFilter::KisEmbossHorizontalFilter() :
KisConvolutionConstFilter(id(), "emboss", i18n("EmbossQt::Horizontal Only")) KisConvolutionConstFilter(id(), "emboss", i18n("Emboss Horizontal Only"))
{ {
m_matrix = createKernel( 0, 0, 0 , -1, 4, -1 , 0, 0, 0, 1, 127); m_matrix = createKernel( 0, 0, 0 , -1, 4, -1 , 0, 0, 0, 1, 127);

@ -73,7 +73,7 @@ class KisEmbossHorizontalVerticalFilter : public KisConvolutionConstFilter {
public: public:
KisEmbossHorizontalVerticalFilter(); KisEmbossHorizontalVerticalFilter();
public: public:
static inline KisID id() { return KisID("", i18n("EmbossQt::Horizontal &Qt::Vertical")); }; static inline KisID id() { return KisID("", i18n("Emboss Horizontal &Vertical")); };
virtual bool supportsPainting() { return false; } virtual bool supportsPainting() { return false; }
}; };
@ -82,7 +82,7 @@ class KisEmbossVerticalFilter : public KisConvolutionConstFilter {
public: public:
KisEmbossVerticalFilter(); KisEmbossVerticalFilter();
public: public:
static inline KisID id() { return KisID("emboss vertical only", i18n("EmbossQt::Vertical Only")); }; static inline KisID id() { return KisID("emboss vertical only", i18n("Emboss Vertical Only")); };
virtual bool supportsPainting() { return false; } virtual bool supportsPainting() { return false; }
}; };
@ -91,7 +91,7 @@ class KisEmbossHorizontalFilter : public KisConvolutionConstFilter {
public: public:
KisEmbossHorizontalFilter(); KisEmbossHorizontalFilter();
public: public:
static inline KisID id() { return KisID("emboss horizontal only", i18n("EmbossQt::Horizontal Only")); }; static inline KisID id() { return KisID("emboss horizontal only", i18n("Emboss Horizontal Only")); };
virtual bool supportsPainting() { return false; } virtual bool supportsPainting() { return false; }
}; };

@ -41,7 +41,7 @@ void KisBoundaryPainter::paint(const KisBoundary& boundary, KisCanvasPainter& pa
KisBoundary::PointPairListList::const_iterator it = boundary.m_horSegments.constBegin(); KisBoundary::PointPairListList::const_iterator it = boundary.m_horSegments.constBegin();
KisBoundary::PointPairListList::const_iterator end = boundary.m_horSegments.constEnd(); KisBoundary::PointPairListList::const_iterator end = boundary.m_horSegments.constEnd();
//Qt::Horizontal // Horizontal
while (it != end) { while (it != end) {
KisBoundary::PointPairList::const_iterator lineIt = (*it).constBegin(); KisBoundary::PointPairList::const_iterator lineIt = (*it).constBegin();
KisBoundary::PointPairList::const_iterator lineEnd = (*it).constEnd(); KisBoundary::PointPairList::const_iterator lineEnd = (*it).constEnd();
@ -58,7 +58,7 @@ void KisBoundaryPainter::paint(const KisBoundary& boundary, KisCanvasPainter& pa
++it; ++it;
} }
//Qt::Vertical // Vertical
it = boundary.m_vertSegments.constBegin(); it = boundary.m_vertSegments.constBegin();
end = boundary.m_vertSegments.constEnd(); end = boundary.m_vertSegments.constEnd();

@ -146,7 +146,7 @@
</item> </item>
<item> <item>
<property name="text"> <property name="text">
<string>Floating PointQt::Horizontal Differencing</string> <string>Floating Point Horizontal Differencing</string>
</property> </property>
</item> </item>
<property name="name"> <property name="name">

@ -153,8 +153,8 @@ void Msod::drawShape(
"NOTCHEDRIGHTARROW", // Notchedrightarrow "NOTCHEDRIGHTARROW", // Notchedrightarrow
"BLOCKARC", // Blockarc "BLOCKARC", // Blockarc
"SMILEYFACE", // Smileyface "SMILEYFACE", // Smileyface
"VERTICALSCROLL", //Qt::Verticalscroll "VERTICALSCROLL", // Verticalscroll
"HORIZONTALSCROLL", //Qt::Horizontalscroll "HORIZONTALSCROLL", // Horizontalscroll
"CIRCULARARROW", // Circulararrow "CIRCULARARROW", // Circulararrow
"NOTCHEDCIRCULARARROW", // Notchedcirculararrow "NOTCHEDCIRCULARARROW", // Notchedcirculararrow
"UTURNARROW", // Uturnarrow "UTURNARROW", // Uturnarrow

@ -441,8 +441,8 @@ public:
Dense6Pattern, Dense6Pattern,
Dense7Pattern, Dense7Pattern,
HorPattern, // Horizonatal lines HorPattern, // Horizonatal lines
VerPattern, //Qt::Vertical lines VerPattern, // Vertical lines
CrossPattern, //Qt::Horizontal andQt::Vertical lines CrossPattern, // Horizontal and vertical lines
BDiagPattern, // Left-bottom to right-top diagonal lines BDiagPattern, // Left-bottom to right-top diagonal lines
FDiagPattern, // Left-top to right-bottom diagonal lines FDiagPattern, // Left-top to right-bottom diagonal lines
DiagCrossPattern, // Crossing diagonal lines DiagCrossPattern, // Crossing diagonal lines

@ -531,14 +531,14 @@
4 = 25% 4 = 25%
5 = 12.5% 5 = 12.5%
6 = 6.25% 6 = 6.25%
7 =Qt::Horizontal Stripe 7 = Horizontal Stripe
8 =Qt::Vertical Stripe 8 = Vertical Stripe
9 = Reverse Diagonal Stripe 9 = Reverse Diagonal Stripe
10 = Diagonal Stripe 10 = Diagonal Stripe
11 = Diagonal Crosshatch 11 = Diagonal Crosshatch
12 = Thick Diagonal Crosshatch 12 = Thick Diagonal Crosshatch
13 = ThinQt::Horizontal Stripe 13 = Thin Horizontal Stripe
14 = ThinQt::Vertical Stripe 14 = Thin Vertical Stripe
15 = Thin Reverse Diagonal Stripe 15 = Thin Reverse Diagonal Stripe
16 = Thin Diagonal Stripe 16 = Thin Diagonal Stripe
17 = Thin Crosshatch 17 = Thin Crosshatch

@ -1214,12 +1214,12 @@ void GNUMERICFilter::setStyleInfo(TQDomNode * sheet, Sheet * table)
else if (shade == "7") else if (shade == "7")
{ {
kspread_cell->format()->setBackGroundBrushStyle(Qt::HorPattern); kspread_cell->format()->setBackGroundBrushStyle(Qt::HorPattern);
/* 7Qt::Horizontal Stripe */ /* 7 Horizontal Stripe */
} }
else if (shade == "8") else if (shade == "8")
{ {
kspread_cell->format()->setBackGroundBrushStyle(Qt::VerPattern); kspread_cell->format()->setBackGroundBrushStyle(Qt::VerPattern);
/* 8Qt::Vertical Stripe */ /* 8 Vertical Stripe */
} }
else if (shade == "9") else if (shade == "9")
{ {
@ -1243,7 +1243,7 @@ void GNUMERICFilter::setStyleInfo(TQDomNode * sheet, Sheet * table)
} }
else if (shade == "13") else if (shade == "13")
{ {
/* 13 ThinQt::Horizontal Stripe TODO: wrong: this is thick!*/ /* 13 Thin Horizontal Stripe TODO: wrong: this is thick!*/
kspread_cell->format()->setBackGroundBrushStyle(Qt::HorPattern); kspread_cell->format()->setBackGroundBrushStyle(Qt::HorPattern);
} }
else if (shade == "14") else if (shade == "14")

@ -131,11 +131,11 @@ int Conversion::fillPatternStyle( int ipat )
case 61: // 97.5 Percent case 61: // 97.5 Percent
case 62: // 97 Percent case 62: // 97 Percent
return TQt::Dense1Pattern; return TQt::Dense1Pattern;
case 14: // DarkQt::Horizontal case 14: // Dark Horizontal
case 20: //Qt::Horizontal case 20: // Horizontal
return TQt::HorPattern; return TQt::HorPattern;
case 15: // DarkQt::Vertical case 15: // Dark Vertical
case 21: //Qt::Vertical case 21: // Vertical
return TQt::VerPattern; return TQt::VerPattern;
case 16: // Dark Forward Diagonal case 16: // Dark Forward Diagonal
case 22: // Forward Diagonal case 22: // Forward Diagonal

@ -36,8 +36,8 @@ bool FilterBase::filter() {
const unsigned height = 841; // Height. const unsigned height = 841; // Height.
const unsigned width = 595; // Width. const unsigned width = 595; // Width.
const unsigned hMargin = 28; //Qt::Horizontal margin. const unsigned hMargin = 28; // Horizontal margin.
const unsigned vMargin = 42; //Qt::Vertical margin. const unsigned vMargin = 42; // Vertical margin.
newstr = TQString("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE DOC >\n" newstr = TQString("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE DOC >\n"
"<DOC author=\"Reginald Stadlbauer and Torben Weis\" email=\"reggie@kde.org and weis@kde.org\" editor=\"KWord\" mime=\"application/x-kword\">\n" "<DOC author=\"Reginald Stadlbauer and Torben Weis\" email=\"reggie@kde.org and weis@kde.org\" editor=\"KWord\" mime=\"application/x-kword\">\n"

@ -1636,7 +1636,7 @@ void KDChartBarPainter::specificPaintData( TQPainter* painter,
iDummy1, iDummy2, prevFrontX2 ); iDummy1, iDummy2, prevFrontX2 );
}// if( dataset >= datasetStart && dataset <= datasetEnd ) }// if( dataset >= datasetStart && dataset <= datasetEnd )
//Qt::Vertical advancement in stacked or percent only if there was a value // Vertical advancement in stacked or percent only if there was a value
// Pending Michel add sideBarHeight in case we are in 3D mode but not for Percent // Pending Michel add sideBarHeight in case we are in 3D mode but not for Percent
// where we need to display the top rect but cant resize the YAxis. // where we need to display the top rect but cant resize the YAxis.
if ( params()->barChartSubType() == KDChartParams::BarStacked || if ( params()->barChartSubType() == KDChartParams::BarStacked ||

@ -6675,7 +6675,7 @@ void KDChartParams::setBWChartPrintStatistics( BWStatVal statValue,
prints the legend entries below each other, Qt::Horizontal prints them prints the legend entries below each other, Qt::Horizontal prints them
aside each other. aside each other.
\noteQt::Horizontal orientation is only possible if the chart is NOT making \note Horizontal orientation is only possible if the chart is NOT making
room in horizontal direction, this means you may specify horizontal room in horizontal direction, this means you may specify horizontal
orientation if the legend position in one of the following values orientation if the legend position in one of the following values
only: LegendTop, LegendBottom, LegendTopLeftTop, LegendTopRightTop, only: LegendTop, LegendBottom, LegendTopLeftTop, LegendTopRightTop,

@ -426,7 +426,7 @@ void KDGanttMinimizeSplitter::init()
\brief the orientation of the splitter \brief the orientation of the splitter
By default the orientation is horizontal (the widgets are side by side). By default the orientation is horizontal (the widgets are side by side).
The possible orientations are TQt:Vertical and Qt::Horizontal (the default). The possible orientations are Qt::Vertical and Qt::Horizontal (the default).
*/ */
void KDGanttMinimizeSplitter::setOrientation( Qt::Orientation o ) void KDGanttMinimizeSplitter::setOrientation( Qt::Orientation o )
{ {

@ -620,7 +620,7 @@ void KDTimeTableWidget::updateMyContent()
maximumComputedGridHeight = hei; maximumComputedGridHeight = hei;
// compute the background interval lines // compute the background interval lines
myGanttView->myTimeHeader->computeIntervals( hei ); myGanttView->myTimeHeader->computeIntervals( hei );
//computeQt::VerticalGrid and column color //compute VerticalGrid and column color
computeVerticalGrid(); computeVerticalGrid();
} }
computeTaskLinks(); computeTaskLinks();

@ -983,19 +983,19 @@ CreateLayoutCommand::name() const
switch(m_type) switch(m_type)
{ {
case Container::HBox: case Container::HBox:
return i18n("Group WidgetsQt::Horizontally"); return i18n("Group Widgets Horizontally");
case Container::VBox: case Container::VBox:
return i18n("Group WidgetsQt::Vertically"); return i18n("Group Widgets Vertically");
case Container::Grid: case Container::Grid:
return i18n("Group Widgets in a Grid"); return i18n("Group Widgets in a Grid");
case Container::HSplitter: case Container::HSplitter:
return i18n("Group WidgetsQt::Horizontally in a Splitter"); return i18n("Group Widgets Horizontally in a Splitter");
case Container::VSplitter: case Container::VSplitter:
return i18n("Group WidgetsQt::Vertically in a Splitter"); return i18n("Group Widgets Vertically in a Splitter");
case Container::HFlow: case Container::HFlow:
return i18n("Group Widgets By Rows"); return i18n("Group Widgets By Rows");
case Container::VFlow: case Container::VFlow:
return i18n("Group WidgetsQt::Vertically By Columns"); return i18n("Group Widgets Vertically By Columns");
default: default:
return i18n("Group widgets"); return i18n("Group widgets");
} }

@ -236,10 +236,10 @@ class KFORMEDITOR_EXPORT WidgetInfo
* "orientationSelectionPopup:verticalIcon" - the same for "Vertical" item. * "orientationSelectionPopup:verticalIcon" - the same for "Vertical" item.
Set this property only for classes supporting orientations. Set this property only for classes supporting orientations.
* "orientationSelectionPopup:horizontalText" - sets a i18n'd text for "Horizontal" item * "orientationSelectionPopup:horizontalText" - sets a i18n'd text for "Horizontal" item
for objects of class 'ClassName', e.g. i18n("InsertQt::Horizontal Line"). for objects of class 'ClassName', e.g. i18n("Insert Horizontal Line").
Set this property only for classes supporting orientations. Set this property only for classes supporting orientations.
* "orientationSelectionPopup:verticalText" - the same for "Vertical" item, * "orientationSelectionPopup:verticalText" - the same for "Vertical" item,
e.g. i18n("InsertQt::Vertical Line"). Set this property only for classes supporting orientations. e.g. i18n("Insert Vertical Line"). Set this property only for classes supporting orientations.
* "dontStartEditingOnInserting" - if not empty, WidgetFactory::startEditing() will not be executed upon * "dontStartEditingOnInserting" - if not empty, WidgetFactory::startEditing() will not be executed upon
widget inseting by a user. widget inseting by a user.
* "forceShowAdvancedProperty:{propertyname}" - set it to "1" for "{propertyname}" advanced property * "forceShowAdvancedProperty:{propertyname}" - set it to "1" for "{propertyname}" advanced property

@ -730,13 +730,13 @@ WidgetFactory::CreateWidgetOptions WidgetLibrary::showOrientationSelectionPopup(
if (textHorizontal.isEmpty() && wclass->inheritedClass()) if (textHorizontal.isEmpty() && wclass->inheritedClass())
iconName = wclass->inheritedClass()->factory()->internalProperty(classname, "orientationSelectionPopup:horizontalText"); iconName = wclass->inheritedClass()->factory()->internalProperty(classname, "orientationSelectionPopup:horizontalText");
if (textHorizontal.isEmpty()) //default if (textHorizontal.isEmpty()) //default
textHorizontal = i18n("InsertQt::Horizontal Widget", "InsertQt::Horizontal"); textHorizontal = i18n("Insert Horizontal Widget", "Insert Horizontal");
TQString textVertical = wclass->factory()->internalProperty(classname, "orientationSelectionPopup:verticalText"); TQString textVertical = wclass->factory()->internalProperty(classname, "orientationSelectionPopup:verticalText");
if (textVertical.isEmpty() && wclass->inheritedClass()) if (textVertical.isEmpty() && wclass->inheritedClass())
iconName = wclass->inheritedClass()->factory()->internalProperty(classname, "orientationSelectionPopup:verticalText"); iconName = wclass->inheritedClass()->factory()->internalProperty(classname, "orientationSelectionPopup:verticalText");
if (textVertical.isEmpty()) //default if (textVertical.isEmpty()) //default
textVertical = i18n("InsertQt::Vertical Widget", "InsertQt::Vertical"); textVertical = i18n("Insert Vertical Widget", "Insert Vertical");
TDEPopupMenu* popup = new TDEPopupMenu(parent, "orientationSelectionPopup"); TDEPopupMenu* popup = new TDEPopupMenu(parent, "orientationSelectionPopup");
popup->insertTitle(SmallIcon(wclass->pixmap()), i18n("Insert Widget: %1").arg(wclass->name())); popup->insertTitle(SmallIcon(wclass->pixmap()), i18n("Insert Widget: %1").arg(wclass->name()));

@ -53,7 +53,7 @@ public:
* Constructor. * Constructor.
* @param parent parent widget * @param parent parent widget
* @param name name * @param name name
* @param orient orientation. Either @pQt::Vertical or @pQt::Horizontal * @param orient orientation. Either @p Qt::Vertical or @p Qt::Horizontal
* @param pos procentual position of the splitter. Must be int [0...100]. * @param pos procentual position of the splitter. Must be int [0...100].
*/ */
KDockSplitter(TQWidget *parent= 0, const char *name= 0, Qt::Orientation orient=Qt::Vertical, int pos= 50); KDockSplitter(TQWidget *parent= 0, const char *name= 0, Qt::Orientation orient=Qt::Vertical, int pos= 50);
@ -169,7 +169,7 @@ public:
void restoreFromForcedFixedSize(KDockWidget *dw); void restoreFromForcedFixedSize(KDockWidget *dw);
/** /**
* The orientation is either @pQt::Horizontal or @pQt::Vertical. * The orientation is either @p Qt::Horizontal or @p Qt::Vertical.
*/ */
Qt::Orientation orientation(){return m_orientation;} Qt::Orientation orientation(){return m_orientation;}
@ -235,7 +235,7 @@ private:
TQFrame* divider; TQFrame* divider;
/** /**
* @p xpos and @p savedXPos represent the current divider position. * @p xpos and @p savedXPos represent the current divider position.
* If the orientation isQt::Horizontal @p xpos actually is "ypos". So * If the orientation is Qt::Horizontal @p xpos actually is "ypos". So
* do not get confused only because of the 'x'. * do not get confused only because of the 'x'.
* *
* xpos and savedXPos are internally high resolution. So *not* 0..100% * xpos and savedXPos are internally high resolution. So *not* 0..100%

@ -37,7 +37,7 @@ class KEXIGUIUTILS_EXPORT KexiFlowLayout : public TQLayout
ie as it is stored in m_list. You must delete the list after using it. */ ie as it is stored in m_list. You must delete the list after using it. */
TQPtrList<TQWidget>* widgetList() const; TQPtrList<TQWidget>* widgetList() const;
/*! Sets layout's orientation to \a orientation. Default orientation isQt::Vertical. */ /*! Sets layout's orientation to \a orientation. Default orientation is Qt::Vertical. */
void setOrientation(Qt::Orientation orientation) { m_orientation = orientation; } void setOrientation(Qt::Orientation orientation) { m_orientation = orientation; }
/*! \return layout's orientation. */ /*! \return layout's orientation. */

@ -1568,13 +1568,13 @@ void KivioView::setHParaAlign( int i )
KivioStencil *pStencil = m_pActivePage->selectedStencils()->first(); KivioStencil *pStencil = m_pActivePage->selectedStencils()->first();
if (!pStencil) if (!pStencil)
return; return;
KMacroCommand *macro = new KMacroCommand( i18n("Change StencilQt::Horizontal Alignment")); KMacroCommand *macro = new KMacroCommand( i18n("Change Stencil Horizontal Alignment"));
bool createMacro = false; bool createMacro = false;
while( pStencil ) while( pStencil )
{ {
if ( pStencil->hTextAlign() != i) if ( pStencil->hTextAlign() != i)
{ {
KivioChangeStencilHAlignmentCommand * cmd = new KivioChangeStencilHAlignmentCommand( i18n("Change StencilQt::Horizontal Alignment"), m_pActivePage, pStencil, pStencil->hTextAlign(), i); KivioChangeStencilHAlignmentCommand * cmd = new KivioChangeStencilHAlignmentCommand( i18n("Change Stencil Horizontal Alignment"), m_pActivePage, pStencil, pStencil->hTextAlign(), i);
pStencil->setHTextAlign(i); pStencil->setHTextAlign(i);
macro->addCommand( cmd ); macro->addCommand( cmd );
@ -1596,13 +1596,13 @@ void KivioView::setVParaAlign( int i )
KivioStencil *pStencil = m_pActivePage->selectedStencils()->first(); KivioStencil *pStencil = m_pActivePage->selectedStencils()->first();
if (!pStencil) if (!pStencil)
return; return;
KMacroCommand *macro = new KMacroCommand( i18n("Change StencilQt::Vertical Alignment")); KMacroCommand *macro = new KMacroCommand( i18n("Change Stencil Vertical Alignment"));
bool createMacro = false; bool createMacro = false;
while( pStencil ) while( pStencil )
{ {
if ( pStencil->vTextAlign() != i ) if ( pStencil->vTextAlign() != i )
{ {
KivioChangeStencilVAlignmentCommand * cmd = new KivioChangeStencilVAlignmentCommand( i18n("Change StencilQt::Vertical Alignment"), m_pActivePage, pStencil, pStencil->vTextAlign(), i); KivioChangeStencilVAlignmentCommand * cmd = new KivioChangeStencilVAlignmentCommand( i18n("Change Stencil Vertical Alignment"), m_pActivePage, pStencil, pStencil->vTextAlign(), i);
pStencil->setVTextAlign( i ); pStencil->setVTextAlign( i );
macro->addCommand( cmd ); macro->addCommand( cmd );
createMacro = true; createMacro = true;

@ -40,7 +40,7 @@ public:
TQColor m_textColor; // The text color TQColor m_textColor; // The text color
TQFont m_textFont; // The text font TQFont m_textFont; // The text font
bool m_isHtml; // Is the text HTML formatted? bool m_isHtml; // Is the text HTML formatted?
int m_hTextAlign, m_vTextAlign; //Qt::Horizontal and vertical text alignment flags int m_hTextAlign, m_vTextAlign; // Horizontal and vertical text alignment flags
}; };
/** /**

@ -18,7 +18,7 @@ protected:
TQColor m_color; // The text color TQColor m_color; // The text color
TQFont m_font; // The text font TQFont m_font; // The text font
bool m_isHtml; // Is the text HTML formatted? bool m_isHtml; // Is the text HTML formatted?
int m_hTextAlign, m_vTextAlign; //Qt::Horizontal and vertical text alignment flags int m_hTextAlign, m_vTextAlign; // Horizontal and vertical text alignment flags
public: public:
KivioTextStyle(); KivioTextStyle();

@ -59,7 +59,7 @@ StencilTextEditor::StencilTextEditor(const TQString& caption, TQWidget *parent,
menu = new TQPopupMenu(m_mainWidget->m_vAlignButton, "hAlignMenu"); menu = new TQPopupMenu(m_mainWidget->m_vAlignButton, "hAlignMenu");
menu->setCheckable(true); menu->setCheckable(true);
menu->insertItem(SmallIconSet("align_top", 16), i18n("Align Top"), TQt::AlignTop); menu->insertItem(SmallIconSet("align_top", 16), i18n("Align Top"), TQt::AlignTop);
menu->insertItem(SmallIconSet("align_vcenter", 16), i18n("AlignQt::Vertical Center"), TQt::AlignVCenter); menu->insertItem(SmallIconSet("align_vcenter", 16), i18n("Align Vertical Center"), TQt::AlignVCenter);
menu->insertItem(SmallIconSet("align_bottom", 16), i18n("Align Bottom"), TQt::AlignBottom); menu->insertItem(SmallIconSet("align_bottom", 16), i18n("Align Bottom"), TQt::AlignBottom);
m_mainWidget->m_vAlignButton->setPopup(menu); m_mainWidget->m_vAlignButton->setPopup(menu);
connect(menu, TQT_SIGNAL(activated(int)), this, TQT_SLOT(setVerticalAlign(int))); connect(menu, TQT_SIGNAL(activated(int)), this, TQT_SLOT(setVerticalAlign(int)));

@ -319,7 +319,7 @@ void TextTool::applyToolAction(TQPtrList<KivioStencil>* stencils)
if(changeHAlignment && (stencil->hTextAlign() != halignment)) { if(changeHAlignment && (stencil->hTextAlign() != halignment)) {
KivioChangeStencilHAlignmentCommand* cmd = new KivioChangeStencilHAlignmentCommand( KivioChangeStencilHAlignmentCommand* cmd = new KivioChangeStencilHAlignmentCommand(
i18n("Change StencilQt::Horizontal Alignment"), view()->activePage(), stencil, stencil->hTextAlign(), halignment); i18n("Change Stencil Horizontal Alignment"), view()->activePage(), stencil, stencil->hTextAlign(), halignment);
stencil->setHTextAlign(halignment); stencil->setHTextAlign(halignment);
macroCmd->addCommand(cmd); macroCmd->addCommand(cmd);
changed = true; changed = true;
@ -327,7 +327,7 @@ void TextTool::applyToolAction(TQPtrList<KivioStencil>* stencils)
if(changeVAlignment && (stencil->vTextAlign() != valignment)) { if(changeVAlignment && (stencil->vTextAlign() != valignment)) {
KivioChangeStencilVAlignmentCommand* cmd = new KivioChangeStencilVAlignmentCommand( KivioChangeStencilVAlignmentCommand* cmd = new KivioChangeStencilVAlignmentCommand(
i18n("Change StencilQt::Vertical Alignment"), view()->activePage(), stencil, stencil->vTextAlign(), valignment); i18n("Change Stencil Vertical Alignment"), view()->activePage(), stencil, stencil->vTextAlign(), valignment);
stencil->setVTextAlign(valignment); stencil->setVTextAlign(valignment);
macroCmd->addCommand(cmd); macroCmd->addCommand(cmd);
changed = true; changed = true;
@ -404,7 +404,7 @@ void TextTool::applyToolAction(KivioStencil* stencil, const KoPoint& pos)
if(stencil->hTextAlign(name) != halignment) { if(stencil->hTextAlign(name) != halignment) {
KivioChangeStencilHAlignmentCommand* cmd = new KivioChangeStencilHAlignmentCommand( KivioChangeStencilHAlignmentCommand* cmd = new KivioChangeStencilHAlignmentCommand(
i18n("Change StencilQt::Horizontal Alignment"), view()->activePage(), stencil, i18n("Change Stencil Horizontal Alignment"), view()->activePage(), stencil,
stencil->hTextAlign(name), halignment, name); stencil->hTextAlign(name), halignment, name);
stencil->setHTextAlign(name, halignment); stencil->setHTextAlign(name, halignment);
macroCmd->addCommand(cmd); macroCmd->addCommand(cmd);
@ -415,7 +415,7 @@ void TextTool::applyToolAction(KivioStencil* stencil, const KoPoint& pos)
if(stencil->vTextAlign(name) != valignment) { if(stencil->vTextAlign(name) != valignment) {
KivioChangeStencilVAlignmentCommand* cmd = new KivioChangeStencilVAlignmentCommand( KivioChangeStencilVAlignmentCommand* cmd = new KivioChangeStencilVAlignmentCommand(
i18n("Change StencilQt::Vertical Alignment"), view()->activePage(), stencil, i18n("Change Stencil Vertical Alignment"), view()->activePage(), stencil,
stencil->vTextAlign(name), valignment, name); stencil->vTextAlign(name), valignment, name);
stencil->setVTextAlign(name, valignment); stencil->setVTextAlign(name, valignment);
macroCmd->addCommand(cmd); macroCmd->addCommand(cmd);

@ -2420,10 +2420,10 @@ KCommand *KPrPage::alignVertical(VerticalAlignmentType _type )
KPrTextObject *obj = dynamic_cast<KPrTextObject *>(it.current()); KPrTextObject *obj = dynamic_cast<KPrTextObject *>(it.current());
if ( obj && !obj->isProtectContent()) if ( obj && !obj->isProtectContent())
{ {
KPrChangeVerticalAlignmentCommand * cmd = new KPrChangeVerticalAlignmentCommand( i18n("ChangeQt::Vertical Alignment"), KPrChangeVerticalAlignmentCommand * cmd = new KPrChangeVerticalAlignmentCommand( i18n("Change Vertical Alignment"),
obj, obj->verticalAlignment(),_type, m_doc); obj, obj->verticalAlignment(),_type, m_doc);
if ( !macro ) if ( !macro )
macro = new KMacroCommand( i18n("ChangeQt::Vertical Alignment")); macro = new KMacroCommand( i18n("Change Vertical Alignment"));
macro->addCommand( cmd ); macro->addCommand( cmd );
cmd->execute(); cmd->execute();
} }

@ -81,20 +81,20 @@ KPrSlideTransitionDia::KPrSlideTransitionDia( TQWidget *parent, const char *name
// fill effect combo // fill effect combo
m_dialog->effectCombo->insertItem( i18n( "No Effect" ) ); m_dialog->effectCombo->insertItem( i18n( "No Effect" ) );
m_dialog->effectCombo->insertItem( i18n( "CloseQt::Horizontal" ) ); m_dialog->effectCombo->insertItem( i18n( "Close Horizontal" ) );
m_dialog->effectCombo->insertItem( i18n( "CloseQt::Vertical" ) ); m_dialog->effectCombo->insertItem( i18n( "Close Vertical" ) );
m_dialog->effectCombo->insertItem( i18n( "Close From All Directions" ) ); m_dialog->effectCombo->insertItem( i18n( "Close From All Directions" ) );
m_dialog->effectCombo->insertItem( i18n( "OpenQt::Horizontal" ) ); m_dialog->effectCombo->insertItem( i18n( "Open Horizontal" ) );
m_dialog->effectCombo->insertItem( i18n( "OpenQt::Vertical" ) ); m_dialog->effectCombo->insertItem( i18n( "Open Vertical" ) );
m_dialog->effectCombo->insertItem( i18n( "Open From All Directions" ) ); m_dialog->effectCombo->insertItem( i18n( "Open From All Directions" ) );
m_dialog->effectCombo->insertItem( i18n( "InterlockingQt::Horizontal 1" ) ); m_dialog->effectCombo->insertItem( i18n( "Interlocking Horizontal 1" ) );
m_dialog->effectCombo->insertItem( i18n( "InterlockingQt::Horizontal 2" ) ); m_dialog->effectCombo->insertItem( i18n( "Interlocking Horizontal 2" ) );
m_dialog->effectCombo->insertItem( i18n( "InterlockingQt::Vertical 1" ) ); m_dialog->effectCombo->insertItem( i18n( "Interlocking Vertical 1" ) );
m_dialog->effectCombo->insertItem( i18n( "InterlockingQt::Vertical 2" ) ); m_dialog->effectCombo->insertItem( i18n( "Interlocking Vertical 2" ) );
m_dialog->effectCombo->insertItem( i18n( "Surround 1" ) ); m_dialog->effectCombo->insertItem( i18n( "Surround 1" ) );
m_dialog->effectCombo->insertItem( i18n( "Fly Away 1" ) ); m_dialog->effectCombo->insertItem( i18n( "Fly Away 1" ) );
m_dialog->effectCombo->insertItem( i18n( "Blinds::Horizontal" ) ); m_dialog->effectCombo->insertItem( i18n( "Blinds Horizontal" ) );
m_dialog->effectCombo->insertItem( i18n( "Blinds::Vertical" ) ); m_dialog->effectCombo->insertItem( i18n( "Blinds Vertical" ) );
m_dialog->effectCombo->insertItem( i18n( "Box In" ) ); m_dialog->effectCombo->insertItem( i18n( "Box In" ) );
m_dialog->effectCombo->insertItem( i18n( "Box Out" ) ); m_dialog->effectCombo->insertItem( i18n( "Box Out" ) );
m_dialog->effectCombo->insertItem( i18n( "Checkerboard Across" ) ); m_dialog->effectCombo->insertItem( i18n( "Checkerboard Across" ) );

@ -185,20 +185,20 @@ KPrTransEffectDia::KPrTransEffectDia( TQWidget *parent, const char *name,
effectList = new TQListBox( leftpart ); effectList = new TQListBox( leftpart );
effectList->insertItem( i18n( "No Effect" ) ); effectList->insertItem( i18n( "No Effect" ) );
effectList->insertItem( i18n( "CloseQt::Horizontal" ) ); effectList->insertItem( i18n( "Close Horizontal" ) );
effectList->insertItem( i18n( "CloseQt::Vertical" ) ); effectList->insertItem( i18n( "Close Vertical" ) );
effectList->insertItem( i18n( "Close From All Directions" ) ); effectList->insertItem( i18n( "Close From All Directions" ) );
effectList->insertItem( i18n( "OpenQt::Horizontal" ) ); effectList->insertItem( i18n( "Open Horizontal" ) );
effectList->insertItem( i18n( "OpenQt::Vertical" ) ); effectList->insertItem( i18n( "Open Vertical" ) );
effectList->insertItem( i18n( "Open From All Directions" ) ); effectList->insertItem( i18n( "Open From All Directions" ) );
effectList->insertItem( i18n( "InterlockingQt::Horizontal 1" ) ); effectList->insertItem( i18n( "Interlocking Horizontal 1" ) );
effectList->insertItem( i18n( "InterlockingQt::Horizontal 2" ) ); effectList->insertItem( i18n( "Interlocking Horizontal 2" ) );
effectList->insertItem( i18n( "InterlockingQt::Vertical 1" ) ); effectList->insertItem( i18n( "Interlocking Vertical 1" ) );
effectList->insertItem( i18n( "InterlockingQt::Vertical 2" ) ); effectList->insertItem( i18n( "Interlocking Vertical 2" ) );
effectList->insertItem( i18n( "Surround 1" ) ); effectList->insertItem( i18n( "Surround 1" ) );
effectList->insertItem( i18n( "Fly Away 1" ) ); effectList->insertItem( i18n( "Fly Away 1" ) );
effectList->insertItem( i18n( "Blinds::Horizontal" ) ); effectList->insertItem( i18n( "Blinds Horizontal" ) );
effectList->insertItem( i18n( "Blinds::Vertical" ) ); effectList->insertItem( i18n( "Blinds Vertical" ) );
effectList->insertItem( i18n( "Box In" ) ); effectList->insertItem( i18n( "Box In" ) );
effectList->insertItem( i18n( "Box Out" ) ); effectList->insertItem( i18n( "Box Out" ) );
effectList->insertItem( i18n( "Checkerboard Across" ) ); effectList->insertItem( i18n( "Checkerboard Across" ) );

@ -110,8 +110,8 @@ SeriesDlg::SeriesDlg( View* parent, const char* name,const TQPoint &_marker)
void SeriesDlg::slotOk() void SeriesDlg::slotOk()
{ {
Series mode=Column; //same asQt::Vertical Series mode=Column; //same as Qt::Vertical
Series type=Linear; // same asQt::Horizontal Series type=Linear; // same as Qt::Horizontal
TQString tmp; TQString tmp;
double dstep, dend, dstart; double dstep, dend, dstart;
Sheet * m_pSheet; Sheet * m_pSheet;

@ -1871,7 +1871,7 @@ void Cell::offsetAlign( int _col, int _row )
void Cell::textSize( TQPainter &_paint ) void Cell::textSize( TQPainter &_paint )
{ {
TQFontMetrics fm = _paint.fontMetrics(); TQFontMetrics fm = _paint.fontMetrics();
//Qt::Horizontal text ? // Horizontal text ?
int tmpAngle; int tmpAngle;
int _row = row(); int _row = row();
@ -1919,7 +1919,7 @@ void Cell::textSize( TQPainter &_paint )
// Set d->textWidth and d->textHeight to correct values according to // Set d->textWidth and d->textHeight to correct values according to
// if the text is horizontal, vertical or rotated. // if the text is horizontal, vertical or rotated.
if ( !tmpVerticalText && !tmpAngle ) { if ( !tmpVerticalText && !tmpAngle ) {
//Qt::Horizontal text. // Horizontal text.
d->textWidth = format()->sheet()->doc()->unzoomItX( fm.width( d->strOutText ) ); d->textWidth = format()->sheet()->doc()->unzoomItX( fm.width( d->strOutText ) );
int offsetFont = 0; int offsetFont = 0;
@ -1946,7 +1946,7 @@ void Cell::textSize( TQPainter &_paint )
* cos ( tmpAngle * M_PI / 180 ) ) ); * cos ( tmpAngle * M_PI / 180 ) ) );
} }
else { else {
//Qt::Vertical text. // Vertical text.
int width = 0; int width = 0;
for ( unsigned int i = 0; i < d->strOutText.length(); i++ ) for ( unsigned int i = 0; i < d->strOutText.length(); i++ )
width = TQMAX( width, fm.width( d->strOutText.at( i ) ) ); width = TQMAX( width, fm.width( d->strOutText.at( i ) ) );
@ -3348,7 +3348,7 @@ void Cell::paintText( TQPainter& painter,
// - One line of text , horizontal // - One line of text , horizontal
// - Angled text // - Angled text
// - Multiple rows of text , horizontal // - Multiple rows of text , horizontal
// -Qt::Vertical text // - Vertical text
if ( !tmpMultiRow && !tmpVerticalText && !tmpAngle ) { if ( !tmpMultiRow && !tmpVerticalText && !tmpAngle ) {
// Case 1: The simple case, one line, no angle. // Case 1: The simple case, one line, no angle.
@ -3424,7 +3424,7 @@ void Cell::paintText( TQPainter& painter,
} while ( i != -1 ); } while ( i != -1 );
} }
else if ( tmpVerticalText && !d->strOutText.isEmpty() ) { else if ( tmpVerticalText && !d->strOutText.isEmpty() ) {
// Case 4:Qt::Vertical text. // Case 4: Vertical text.
TQString t; TQString t;
int i = 0; int i = 0;
@ -4139,7 +4139,7 @@ TQString Cell::textDisplaying( TQPainter &_painter )
return TQString( "" ); return TQString( "" );
} }
else if ( format()->verticalText( column(), row() ) ) { else if ( format()->verticalText( column(), row() ) ) {
//Qt::Vertical text. // Vertical text.
RowFormat *rl = format()->sheet()->rowFormat( row() ); RowFormat *rl = format()->sheet()->rowFormat( row() );
double tmpIndent = 0.0; double tmpIndent = 0.0;

@ -693,12 +693,12 @@ void View::Private::initActions()
actions->mergeCell->setToolTip(i18n("Merge the selected region.")); actions->mergeCell->setToolTip(i18n("Merge the selected region."));
actions->mergeCell->plug( actions->mergeCell->popupMenu() ); actions->mergeCell->plug( actions->mergeCell->popupMenu() );
actions->mergeCellHorizontal = new TDEAction( i18n("Merge CellsQt::Horizontally"),"mergecell-horizontal", actions->mergeCellHorizontal = new TDEAction( i18n("Merge Cells Horizontally"),"mergecell-horizontal",
0, TQT_TQOBJECT(view), TQT_SLOT( mergeCellHorizontal() ), ac, "mergecellHorizontal" ); 0, TQT_TQOBJECT(view), TQT_SLOT( mergeCellHorizontal() ), ac, "mergecellHorizontal" );
actions->mergeCellHorizontal->setToolTip(i18n("Merge the selected region horizontally.")); actions->mergeCellHorizontal->setToolTip(i18n("Merge the selected region horizontally."));
actions->mergeCellHorizontal->plug( actions->mergeCell->popupMenu() ); actions->mergeCellHorizontal->plug( actions->mergeCell->popupMenu() );
actions->mergeCellVertical = new TDEAction( i18n("Merge CellsQt::Vertically"),"mergecell-vertical", actions->mergeCellVertical = new TDEAction( i18n("Merge Cells Vertically"),"mergecell-vertical",
0, TQT_TQOBJECT(view), TQT_SLOT( mergeCellVertical() ), ac, "mergecellVertical" ); 0, TQT_TQOBJECT(view), TQT_SLOT( mergeCellVertical() ), ac, "mergecellVertical" );
actions->mergeCellVertical->setToolTip(i18n("Merge the selected region vertically.")); actions->mergeCellVertical->setToolTip(i18n("Merge the selected region vertically."));
actions->mergeCellVertical->plug( actions->mergeCell->popupMenu() ); actions->mergeCellVertical->plug( actions->mergeCell->popupMenu() );
@ -2150,7 +2150,7 @@ if ( config->hasGroup("KSpread Page Layout" ) )
{ {
d->activeSheet->setPaperFormat((KoFormat)config->readNumEntry("Default size page",1)); d->activeSheet->setPaperFormat((KoFormat)config->readNumEntry("Default size page",1));
d->activeSheet->setPaperQt::Orientation((KoOrientation)config->readNumEntry("Default orientation page",0)); d->activeSheet->setPaperOrientation((KoOrientation)config->readNumEntry("Default orientation page",0));
d->activeSheet->setPaperUnit((KoUnit::Unit)config->readNumEntry("Default unit page",0)); d->activeSheet->setPaperUnit((KoUnit::Unit)config->readNumEntry("Default unit page",0));
} }
} }

@ -903,11 +903,11 @@ TQString MergeManipulator::name() const
{ {
if (m_mergeHorizontal) if (m_mergeHorizontal)
{ {
return i18n("Merge CellsQt::Horizontally"); return i18n("Merge Cells Horizontally");
} }
else if (m_mergeVertical) else if (m_mergeVertical)
{ {
return i18n("Merge CellsQt::Vertically"); return i18n("Merge Cells Vertically");
} }
else else
{ {

@ -388,7 +388,7 @@ class HorAlignManipulator : public FormatManipulator
~HorAlignManipulator() {} ~HorAlignManipulator() {}
protected: protected:
virtual TQString name() const { return i18n("ChangeQt::Horizontal Alignment"); } virtual TQString name() const { return i18n("Change Horizontal Alignment"); }
private: private:
}; };
@ -405,7 +405,7 @@ class VerAlignManipulator : public FormatManipulator
~VerAlignManipulator() {} ~VerAlignManipulator() {}
protected: protected:
virtual TQString name() const { return i18n("ChangeQt::Vertical Alignment"); } virtual TQString name() const { return i18n("Change Vertical Alignment"); }
private: private:
}; };

@ -115,7 +115,7 @@ void MLabelObject::draw( TQPainter* p, int xoffset, int yoffset )
// Set the text alignment flags // Set the text alignment flags
//Qt::Horizontal // Horizontal
switch ( hAlignment ) switch ( hAlignment )
{ {
case MLabelObject::Left: case MLabelObject::Left:
@ -128,7 +128,7 @@ void MLabelObject::draw( TQPainter* p, int xoffset, int yoffset )
tf = TQPainter::AlignRight; tf = TQPainter::AlignRight;
} }
//Qt::Vertical // Vertical
switch ( vAlignment ) switch ( vAlignment )
{ {
case MLabelObject::Top: case MLabelObject::Top:

@ -46,14 +46,14 @@ CursorEdit::CursorEdit(Property *property, TQWidget *parent, const char *name)
(*m_spValues)[i18n("Cross")] = TQt::CrossCursor; (*m_spValues)[i18n("Cross")] = TQt::CrossCursor;
(*m_spValues)[i18n("Waiting")] = TQt::WaitCursor; (*m_spValues)[i18n("Waiting")] = TQt::WaitCursor;
(*m_spValues)[i18n("iBeam")] = TQt::IbeamCursor; (*m_spValues)[i18n("iBeam")] = TQt::IbeamCursor;
(*m_spValues)[i18n("SizeQt::Vertical")] = TQt::SizeVerCursor; (*m_spValues)[i18n("Size Vertical")] = TQt::SizeVerCursor;
(*m_spValues)[i18n("SizeQt::Horizontal")] = TQt::SizeHorCursor; (*m_spValues)[i18n("Size Horizontal")] = TQt::SizeHorCursor;
(*m_spValues)[i18n("Size Slash")] = TQt::SizeBDiagCursor; (*m_spValues)[i18n("Size Slash")] = TQt::SizeBDiagCursor;
(*m_spValues)[i18n("Size Backslash")] = TQt::SizeFDiagCursor; (*m_spValues)[i18n("Size Backslash")] = TQt::SizeFDiagCursor;
(*m_spValues)[i18n("Size All")] = TQt::SizeAllCursor; (*m_spValues)[i18n("Size All")] = TQt::SizeAllCursor;
(*m_spValues)[i18n("Blank")] = TQt::BlankCursor; (*m_spValues)[i18n("Blank")] = TQt::BlankCursor;
(*m_spValues)[i18n("SplitQt::Vertical")] = TQt::SplitVCursor; (*m_spValues)[i18n("Split Vertical")] = TQt::SplitVCursor;
(*m_spValues)[i18n("SplitQt::Horizontal")] = TQt::SplitHCursor; (*m_spValues)[i18n("Split Horizontal")] = TQt::SplitHCursor;
(*m_spValues)[i18n("Pointing Hand")] = TQt::PointingHandCursor; (*m_spValues)[i18n("Pointing Hand")] = TQt::PointingHandCursor;
(*m_spValues)[i18n("Forbidden")] = TQt::ForbiddenCursor; (*m_spValues)[i18n("Forbidden")] = TQt::ForbiddenCursor;
(*m_spValues)[i18n("What's this")] = TQt::WhatsThisCursor; (*m_spValues)[i18n("What's this")] = TQt::WhatsThisCursor;
@ -86,13 +86,13 @@ CursorEdit::CursorEdit(Property *property, TQWidget *parent, const char *name)
<< i18n("Mouse Cursor Shape", "Cross") << i18n("Mouse Cursor Shape", "Cross")
<< i18n("Mouse Cursor Shape", "Waiting") << i18n("Mouse Cursor Shape", "Waiting")
<< i18n("Mouse Cursor Shape", "I") << i18n("Mouse Cursor Shape", "I")
<< i18n("Mouse Cursor Shape", "SizeQt::Vertical") << i18n("Mouse Cursor Shape", "Size Vertical")
<< i18n("Mouse Cursor Shape", "SizeQt::Horizontal") << i18n("Mouse Cursor Shape", "Size Horizontal")
<< i18n("Mouse Cursor Shape", "Size Slash") << i18n("Mouse Cursor Shape", "Size Slash")
<< i18n("Mouse Cursor Shape", "Size Backslash") << i18n("Mouse Cursor Shape", "Size Backslash")
<< i18n("Mouse Cursor Shape", "Size All") << i18n("Mouse Cursor Shape", "Size All")
<< i18n("Mouse Cursor Shape", "SplitQt::Vertical") << i18n("Mouse Cursor Shape", "Split Vertical")
<< i18n("Mouse Cursor Shape", "SplitQt::Horizontal") << i18n("Mouse Cursor Shape", "Split Horizontal")
<< i18n("Mouse Cursor Shape", "Pointing Hand") << i18n("Mouse Cursor Shape", "Pointing Hand")
<< i18n("Mouse Cursor Shape", "Forbidden") << i18n("Mouse Cursor Shape", "Forbidden")
<< i18n("Mouse Cursor Shape", "What's This?"); << i18n("Mouse Cursor Shape", "What's This?");

@ -30,7 +30,7 @@
//#define DEBUG_FORMATTER //#define DEBUG_FORMATTER
//Qt::Vertical info (height, baseline etc.) // Vertical info (height, baseline etc.)
//#define DEBUG_FORMATTER_VERT //#define DEBUG_FORMATTER_VERT
// Line and paragraph width // Line and paragraph width

Loading…
Cancel
Save