@ -187,21 +187,21 @@ KateView::~KateView()
void KateView : : setupConnections ( )
void KateView : : setupConnections ( )
{
{
connect ( m_doc , TQT_SIGNAL ( undoChanged ( ) ) ,
connect ( m_doc , TQT_SIGNAL ( undoChanged ( ) ) ,
TQT_TQOBJECT ( this ) , TQT_SLOT ( slotNewUndo ( ) ) ) ;
this , TQT_SLOT ( slotNewUndo ( ) ) ) ;
connect ( m_doc , TQT_SIGNAL ( hlChanged ( ) ) ,
connect ( m_doc , TQT_SIGNAL ( hlChanged ( ) ) ,
TQT_TQOBJECT ( this ) , TQT_SLOT ( slotHlChanged ( ) ) ) ;
this , TQT_SLOT ( slotHlChanged ( ) ) ) ;
connect ( m_doc , TQT_SIGNAL ( canceled ( const TQString & ) ) ,
connect ( m_doc , TQT_SIGNAL ( canceled ( const TQString & ) ) ,
TQT_TQOBJECT ( this ) , TQT_SLOT ( slotSaveCanceled ( const TQString & ) ) ) ;
this , TQT_SLOT ( slotSaveCanceled ( const TQString & ) ) ) ;
connect ( m_viewInternal , TQT_SIGNAL ( dropEventPass ( TQDropEvent * ) ) ,
connect ( m_viewInternal , TQT_SIGNAL ( dropEventPass ( TQDropEvent * ) ) ,
TQT_TQOBJECT ( this ) , TQT_SIGNAL ( dropEventPass ( TQDropEvent * ) ) ) ;
this , TQT_SIGNAL ( dropEventPass ( TQDropEvent * ) ) ) ;
connect ( this , TQT_SIGNAL ( cursorPositionChanged ( ) ) , this , TQT_SLOT ( slotStatusMsg ( ) ) ) ;
connect ( this , TQT_SIGNAL ( cursorPositionChanged ( ) ) , this , TQT_SLOT ( slotStatusMsg ( ) ) ) ;
connect ( this , TQT_SIGNAL ( newStatus ( ) ) , this , TQT_SLOT ( slotStatusMsg ( ) ) ) ;
connect ( this , TQT_SIGNAL ( newStatus ( ) ) , this , TQT_SLOT ( slotStatusMsg ( ) ) ) ;
connect ( m_doc , TQT_SIGNAL ( undoChanged ( ) ) , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotStatusMsg ( ) ) ) ;
connect ( m_doc , TQT_SIGNAL ( undoChanged ( ) ) , this , TQT_SLOT ( slotStatusMsg ( ) ) ) ;
if ( m_doc - > browserView ( ) )
if ( m_doc - > browserView ( ) )
{
{
connect ( this , TQT_SIGNAL ( dropEventPass ( TQDropEvent * ) ) ,
connect ( this , TQT_SIGNAL ( dropEventPass ( TQDropEvent * ) ) ,
TQT_TQOBJECT ( this ) , TQT_SLOT ( slotDropEventPass ( TQDropEvent * ) ) ) ;
this , TQT_SLOT ( slotDropEventPass ( TQDropEvent * ) ) ) ;
}
}
}
}
@ -212,21 +212,21 @@ void KateView::setupActions()
m_toggleWriteLock = 0 ;
m_toggleWriteLock = 0 ;
m_cut = a = KStdAction : : cut ( TQT_TQOBJECT ( this ) , TQT_SLOT ( cut ( ) ) , ac ) ;
m_cut = a = KStdAction : : cut ( this , TQT_SLOT ( cut ( ) ) , ac ) ;
a - > setWhatsThis ( i18n ( " Cut the selected text and move it to the clipboard " ) ) ;
a - > setWhatsThis ( i18n ( " Cut the selected text and move it to the clipboard " ) ) ;
m_paste = a = KStdAction : : pasteText ( TQT_TQOBJECT ( this ) , TQT_SLOT ( paste ( ) ) , ac ) ;
m_paste = a = KStdAction : : pasteText ( this , TQT_SLOT ( paste ( ) ) , ac ) ;
a - > setWhatsThis ( i18n ( " Paste previously copied or cut clipboard contents " ) ) ;
a - > setWhatsThis ( i18n ( " Paste previously copied or cut clipboard contents " ) ) ;
m_copy = a = KStdAction : : copy ( TQT_TQOBJECT ( this ) , TQT_SLOT ( copy ( ) ) , ac ) ;
m_copy = a = KStdAction : : copy ( this , TQT_SLOT ( copy ( ) ) , ac ) ;
a - > setWhatsThis ( i18n ( " Use this command to copy the currently selected text to the system clipboard. " ) ) ;
a - > setWhatsThis ( i18n ( " Use this command to copy the currently selected text to the system clipboard. " ) ) ;
m_copyHTML = a = new TDEAction ( i18n ( " Copy as &HTML " ) , " edit-copy " , 0 , TQT_TQOBJECT ( this ) , TQT_SLOT ( copyHTML ( ) ) , ac , " edit_copy_html " ) ;
m_copyHTML = a = new TDEAction ( i18n ( " Copy as &HTML " ) , " edit-copy " , 0 , this , TQT_SLOT ( copyHTML ( ) ) , ac , " edit_copy_html " ) ;
a - > setWhatsThis ( i18n ( " Use this command to copy the currently selected text as HTML to the system clipboard. " ) ) ;
a - > setWhatsThis ( i18n ( " Use this command to copy the currently selected text as HTML to the system clipboard. " ) ) ;
if ( ! m_doc - > readOnly ( ) )
if ( ! m_doc - > readOnly ( ) )
{
{
a = KStdAction : : save ( TQT_TQOBJECT ( this ) , TQT_SLOT ( save ( ) ) , ac ) ;
a = KStdAction : : save ( this , TQT_SLOT ( save ( ) ) , ac ) ;
a - > setWhatsThis ( i18n ( " Save the current document " ) ) ;
a - > setWhatsThis ( i18n ( " Save the current document " ) ) ;
a = m_editUndo = KStdAction : : undo ( m_doc , TQT_SLOT ( undo ( ) ) , ac ) ;
a = m_editUndo = KStdAction : : undo ( m_doc , TQT_SLOT ( undo ( ) ) , ac ) ;
@ -235,60 +235,60 @@ void KateView::setupActions()
a = m_editRedo = KStdAction : : redo ( m_doc , TQT_SLOT ( redo ( ) ) , ac ) ;
a = m_editRedo = KStdAction : : redo ( m_doc , TQT_SLOT ( redo ( ) ) , ac ) ;
a - > setWhatsThis ( i18n ( " Revert the most recent undo operation " ) ) ;
a - > setWhatsThis ( i18n ( " Revert the most recent undo operation " ) ) ;
( new TDEAction ( i18n ( " &Word Wrap Document " ) , " " , 0 , TQT_TQOBJECT ( this ) , TQT_SLOT ( applyWordWrap ( ) ) , ac , " tools_apply_wordwrap " ) ) - > setWhatsThis (
( new TDEAction ( i18n ( " &Word Wrap Document " ) , " " , 0 , this , TQT_SLOT ( applyWordWrap ( ) ) , ac , " tools_apply_wordwrap " ) ) - > setWhatsThis (
i18n ( " Use this command to wrap all lines of the current document which are longer than the width of the "
i18n ( " Use this command to wrap all lines of the current document which are longer than the width of the "
" current view, to fit into this view.<br><br> This is a static word wrap, meaning it is not updated "
" current view, to fit into this view.<br><br> This is a static word wrap, meaning it is not updated "
" when the view is resized. " ) ) ;
" when the view is resized. " ) ) ;
// setup Tools menu
// setup Tools menu
a = new TDEAction ( i18n ( " &Indent " ) , " format-indent-more " , TQt : : CTRL + TQt : : Key_I , TQT_TQOBJECT ( this ) , TQT_SLOT ( indent ( ) ) , ac , " tools_indent " ) ;
a = new TDEAction ( i18n ( " &Indent " ) , " format-indent-more " , TQt : : CTRL + TQt : : Key_I , this , TQT_SLOT ( indent ( ) ) , ac , " tools_indent " ) ;
a - > setWhatsThis ( i18n ( " Use this to indent a selected block of text.<br><br> "
a - > setWhatsThis ( i18n ( " Use this to indent a selected block of text.<br><br> "
" You can configure whether tabs should be honored and used or replaced with spaces, in the configuration dialog. " ) ) ;
" You can configure whether tabs should be honored and used or replaced with spaces, in the configuration dialog. " ) ) ;
a = new TDEAction ( i18n ( " &Unindent " ) , " format-indent-less " , TQt : : CTRL + TQt : : SHIFT + TQt : : Key_I , TQT_TQOBJECT ( this ) , TQT_SLOT ( unIndent ( ) ) , ac , " tools_unindent " ) ;
a = new TDEAction ( i18n ( " &Unindent " ) , " format-indent-less " , TQt : : CTRL + TQt : : SHIFT + TQt : : Key_I , this , TQT_SLOT ( unIndent ( ) ) , ac , " tools_unindent " ) ;
a - > setWhatsThis ( i18n ( " Use this to unindent a selected block of text. " ) ) ;
a - > setWhatsThis ( i18n ( " Use this to unindent a selected block of text. " ) ) ;
a = new TDEAction ( i18n ( " &Clean Indentation " ) , 0 , TQT_TQOBJECT ( this ) , TQT_SLOT ( cleanIndent ( ) ) , ac , " tools_cleanIndent " ) ;
a = new TDEAction ( i18n ( " &Clean Indentation " ) , 0 , this , TQT_SLOT ( cleanIndent ( ) ) , ac , " tools_cleanIndent " ) ;
a - > setWhatsThis ( i18n ( " Use this to clean the indentation of a selected block of text (only tabs/only spaces)<br><br> "
a - > setWhatsThis ( i18n ( " Use this to clean the indentation of a selected block of text (only tabs/only spaces)<br><br> "
" You can configure whether tabs should be honored and used or replaced with spaces, in the configuration dialog. " ) ) ;
" You can configure whether tabs should be honored and used or replaced with spaces, in the configuration dialog. " ) ) ;
a = new TDEAction ( i18n ( " &Align " ) , 0 , TQT_TQOBJECT ( this ) , TQT_SLOT ( align ( ) ) , ac , " tools_align " ) ;
a = new TDEAction ( i18n ( " &Align " ) , 0 , this , TQT_SLOT ( align ( ) ) , ac , " tools_align " ) ;
a - > setWhatsThis ( i18n ( " Use this to align the current line or block of text to its proper indent level. " ) ) ;
a - > setWhatsThis ( i18n ( " Use this to align the current line or block of text to its proper indent level. " ) ) ;
a = new TDEAction ( i18n ( " C&omment " ) , CTRL + TQt : : Key_D , TQT_TQOBJECT ( this ) , TQT_SLOT ( comment ( ) ) ,
a = new TDEAction ( i18n ( " C&omment " ) , CTRL + TQt : : Key_D , this , TQT_SLOT ( comment ( ) ) ,
ac , " tools_comment " ) ;
ac , " tools_comment " ) ;
a - > setWhatsThis ( i18n ( " This command comments out the current line or a selected block of text.<BR><BR> "
a - > setWhatsThis ( i18n ( " This command comments out the current line or a selected block of text.<BR><BR> "
" The characters for single/multiple line comments are defined within the language's highlighting. " ) ) ;
" The characters for single/multiple line comments are defined within the language's highlighting. " ) ) ;
a = new TDEAction ( i18n ( " Unco&mment " ) , CTRL + SHIFT + TQt : : Key_D , TQT_TQOBJECT ( this ) , TQT_SLOT ( uncomment ( ) ) ,
a = new TDEAction ( i18n ( " Unco&mment " ) , CTRL + SHIFT + TQt : : Key_D , this , TQT_SLOT ( uncomment ( ) ) ,
ac , " tools_uncomment " ) ;
ac , " tools_uncomment " ) ;
a - > setWhatsThis ( i18n ( " This command removes comments from the current line or a selected block of text.<BR><BR> "
a - > setWhatsThis ( i18n ( " This command removes comments from the current line or a selected block of text.<BR><BR> "
" The characters for single/multiple line comments are defined within the language's highlighting. " ) ) ;
" The characters for single/multiple line comments are defined within the language's highlighting. " ) ) ;
a = m_toggleWriteLock = new TDEToggleAction (
a = m_toggleWriteLock = new TDEToggleAction (
i18n ( " &Read Only Mode " ) , 0 , 0 ,
i18n ( " &Read Only Mode " ) , 0 , 0 ,
TQT_TQOBJECT ( this ) , TQT_SLOT ( toggleWriteLock ( ) ) ,
this , TQT_SLOT ( toggleWriteLock ( ) ) ,
ac , " tools_toggle_write_lock " ) ;
ac , " tools_toggle_write_lock " ) ;
a - > setWhatsThis ( i18n ( " Lock/unlock the document for writing " ) ) ;
a - > setWhatsThis ( i18n ( " Lock/unlock the document for writing " ) ) ;
a = new TDEAction ( i18n ( " Uppercase " ) , CTRL + TQt : : Key_U , TQT_TQOBJECT ( this ) ,
a = new TDEAction ( i18n ( " Uppercase " ) , CTRL + TQt : : Key_U , this ,
TQT_SLOT ( uppercase ( ) ) , ac , " tools_uppercase " ) ;
TQT_SLOT ( uppercase ( ) ) , ac , " tools_uppercase " ) ;
a - > setWhatsThis ( i18n ( " Convert the selection to uppercase, or the character to the "
a - > setWhatsThis ( i18n ( " Convert the selection to uppercase, or the character to the "
" right of the cursor if no text is selected. " ) ) ;
" right of the cursor if no text is selected. " ) ) ;
a = new TDEAction ( i18n ( " Lowercase " ) , CTRL + SHIFT + TQt : : Key_U , TQT_TQOBJECT ( this ) ,
a = new TDEAction ( i18n ( " Lowercase " ) , CTRL + SHIFT + TQt : : Key_U , this ,
TQT_SLOT ( lowercase ( ) ) , ac , " tools_lowercase " ) ;
TQT_SLOT ( lowercase ( ) ) , ac , " tools_lowercase " ) ;
a - > setWhatsThis ( i18n ( " Convert the selection to lowercase, or the character to the "
a - > setWhatsThis ( i18n ( " Convert the selection to lowercase, or the character to the "
" right of the cursor if no text is selected. " ) ) ;
" right of the cursor if no text is selected. " ) ) ;
a = new TDEAction ( i18n ( " Capitalize " ) , CTRL + ALT + TQt : : Key_U , TQT_TQOBJECT ( this ) ,
a = new TDEAction ( i18n ( " Capitalize " ) , CTRL + ALT + TQt : : Key_U , this ,
TQT_SLOT ( capitalize ( ) ) , ac , " tools_capitalize " ) ;
TQT_SLOT ( capitalize ( ) ) , ac , " tools_capitalize " ) ;
a - > setWhatsThis ( i18n ( " Capitalize the selection, or the word under the "
a - > setWhatsThis ( i18n ( " Capitalize the selection, or the word under the "
" cursor if no text is selected. " ) ) ;
" cursor if no text is selected. " ) ) ;
a = new TDEAction ( i18n ( " Delete Line " ) , 0 , TQT_TQOBJECT ( this ) ,
a = new TDEAction ( i18n ( " Delete Line " ) , 0 , this ,
TQT_SLOT ( killLine ( ) ) , ac , " tools_delete_line " ) ;
TQT_SLOT ( killLine ( ) ) , ac , " tools_delete_line " ) ;
a - > setWhatsThis ( i18n ( " Use this to delete the current line. " ) ) ;
a - > setWhatsThis ( i18n ( " Use this to delete the current line. " ) ) ;
a = new TDEAction ( i18n ( " Join Lines " ) , CTRL + TQt : : Key_J , TQT_TQOBJECT ( this ) ,
a = new TDEAction ( i18n ( " Join Lines " ) , CTRL + TQt : : Key_J , this ,
TQT_SLOT ( joinLines ( ) ) , ac , " tools_join_lines " ) ;
TQT_SLOT ( joinLines ( ) ) , ac , " tools_join_lines " ) ;
a - > setWhatsThis ( i18n ( " Use this to join lines together. " ) ) ;
a - > setWhatsThis ( i18n ( " Use this to join lines together. " ) ) ;
}
}
@ -303,13 +303,13 @@ void KateView::setupActions()
a = KStdAction : : print ( m_doc , TQT_SLOT ( print ( ) ) , ac ) ;
a = KStdAction : : print ( m_doc , TQT_SLOT ( print ( ) ) , ac ) ;
a - > setWhatsThis ( i18n ( " Print the current document. " ) ) ;
a - > setWhatsThis ( i18n ( " Print the current document. " ) ) ;
a = new TDEAction ( i18n ( " Reloa&d " ) , " reload " , TDEStdAccel : : reload ( ) , TQT_TQOBJECT ( this ) , TQT_SLOT ( reloadFile ( ) ) , ac , " file_reload " ) ;
a = new TDEAction ( i18n ( " Reloa&d " ) , " reload " , TDEStdAccel : : reload ( ) , this , TQT_SLOT ( reloadFile ( ) ) , ac , " file_reload " ) ;
a - > setWhatsThis ( i18n ( " Reload the current document from disk. " ) ) ;
a - > setWhatsThis ( i18n ( " Reload the current document from disk. " ) ) ;
a = KStdAction : : saveAs ( TQT_TQOBJECT ( this ) , TQT_SLOT ( saveAs ( ) ) , ac ) ;
a = KStdAction : : saveAs ( this , TQT_SLOT ( saveAs ( ) ) , ac ) ;
a - > setWhatsThis ( i18n ( " Save the current document to disk, with a name of your choice. " ) ) ;
a - > setWhatsThis ( i18n ( " Save the current document to disk, with a name of your choice. " ) ) ;
a = KStdAction : : gotoLine ( TQT_TQOBJECT ( this ) , TQT_SLOT ( gotoLine ( ) ) , ac ) ;
a = KStdAction : : gotoLine ( this , TQT_SLOT ( gotoLine ( ) ) , ac ) ;
a - > setWhatsThis ( i18n ( " This command opens a dialog and lets you choose a line that you want the cursor to move to. " ) ) ;
a - > setWhatsThis ( i18n ( " This command opens a dialog and lets you choose a line that you want the cursor to move to. " ) ) ;
a = new TDEAction ( i18n ( " &Configure Editor... " ) , 0 , m_doc , TQT_SLOT ( configDialog ( ) ) , ac , " set_confdlg " ) ;
a = new TDEAction ( i18n ( " &Configure Editor... " ) , 0 , m_doc , TQT_SLOT ( configDialog ( ) ) , ac , " set_confdlg " ) ;
@ -329,45 +329,45 @@ void KateView::setupActions()
new KateViewIndentationAction ( m_doc , i18n ( " &Indentation " ) , ac , " tools_indentation " ) ;
new KateViewIndentationAction ( m_doc , i18n ( " &Indentation " ) , ac , " tools_indentation " ) ;
// html export
// html export
a = new TDEAction ( i18n ( " E&xport as HTML... " ) , 0 , 0 , TQT_TQOBJECT ( this ) , TQT_SLOT ( exportAsHTML ( ) ) , ac , " file_export_html " ) ;
a = new TDEAction ( i18n ( " E&xport as HTML... " ) , 0 , 0 , this , TQT_SLOT ( exportAsHTML ( ) ) , ac , " file_export_html " ) ;
a - > setWhatsThis ( i18n ( " This command allows you to export the current document "
a - > setWhatsThis ( i18n ( " This command allows you to export the current document "
" with all highlighting information into a HTML document. " ) ) ;
" with all highlighting information into a HTML document. " ) ) ;
m_selectAll = a = KStdAction : : selectAll ( TQT_TQOBJECT ( this ) , TQT_SLOT ( selectAll ( ) ) , ac ) ;
m_selectAll = a = KStdAction : : selectAll ( this , TQT_SLOT ( selectAll ( ) ) , ac ) ;
a - > setWhatsThis ( i18n ( " Select the entire text of the current document. " ) ) ;
a - > setWhatsThis ( i18n ( " Select the entire text of the current document. " ) ) ;
m_deSelect = a = KStdAction : : deselect ( TQT_TQOBJECT ( this ) , TQT_SLOT ( clearSelection ( ) ) , ac ) ;
m_deSelect = a = KStdAction : : deselect ( this , TQT_SLOT ( clearSelection ( ) ) , ac ) ;
a - > setWhatsThis ( i18n ( " If you have selected something within the current document, this will no longer be selected. " ) ) ;
a - > setWhatsThis ( i18n ( " If you have selected something within the current document, this will no longer be selected. " ) ) ;
a = new TDEAction ( i18n ( " Enlarge Font " ) , " zoom-in " , 0 , TQT_TQOBJECT( m_viewInternal) , TQT_SLOT ( slotIncFontSizes ( ) ) , ac , " incFontSizes " ) ;
a = new TDEAction ( i18n ( " Enlarge Font " ) , " zoom-in " , 0 , m_viewInternal, TQT_SLOT ( slotIncFontSizes ( ) ) , ac , " incFontSizes " ) ;
a - > setWhatsThis ( i18n ( " This increases the display font size. " ) ) ;
a - > setWhatsThis ( i18n ( " This increases the display font size. " ) ) ;
a = new TDEAction ( i18n ( " Shrink Font " ) , " zoom-out " , 0 , TQT_TQOBJECT( m_viewInternal) , TQT_SLOT ( slotDecFontSizes ( ) ) , ac , " decFontSizes " ) ;
a = new TDEAction ( i18n ( " Shrink Font " ) , " zoom-out " , 0 , m_viewInternal, TQT_SLOT ( slotDecFontSizes ( ) ) , ac , " decFontSizes " ) ;
a - > setWhatsThis ( i18n ( " This decreases the display font size. " ) ) ;
a - > setWhatsThis ( i18n ( " This decreases the display font size. " ) ) ;
a = m_toggleBlockSelection = new TDEToggleAction (
a = m_toggleBlockSelection = new TDEToggleAction (
i18n ( " Bl&ock Selection Mode " ) , CTRL + SHIFT + Key_B ,
i18n ( " Bl&ock Selection Mode " ) , CTRL + SHIFT + Key_B ,
TQT_TQOBJECT ( this ) , TQT_SLOT ( toggleBlockSelectionMode ( ) ) ,
this , TQT_SLOT ( toggleBlockSelectionMode ( ) ) ,
ac , " set_verticalSelect " ) ;
ac , " set_verticalSelect " ) ;
a - > setWhatsThis ( i18n ( " This command allows switching between the normal (line based) selection mode and the block selection mode. " ) ) ;
a - > setWhatsThis ( i18n ( " This command allows switching between the normal (line based) selection mode and the block selection mode. " ) ) ;
a = m_toggleInsert = new TDEToggleAction (
a = m_toggleInsert = new TDEToggleAction (
i18n ( " Overwr&ite Mode " ) , Key_Insert ,
i18n ( " Overwr&ite Mode " ) , Key_Insert ,
TQT_TQOBJECT ( this ) , TQT_SLOT ( toggleInsert ( ) ) ,
this , TQT_SLOT ( toggleInsert ( ) ) ,
ac , " set_insert " ) ;
ac , " set_insert " ) ;
a - > setWhatsThis ( i18n ( " Choose whether you want the text you type to be inserted or to overwrite existing text. " ) ) ;
a - > setWhatsThis ( i18n ( " Choose whether you want the text you type to be inserted or to overwrite existing text. " ) ) ;
TDEToggleAction * toggleAction ;
TDEToggleAction * toggleAction ;
a = m_toggleDynWrap = toggleAction = new TDEToggleAction (
a = m_toggleDynWrap = toggleAction = new TDEToggleAction (
i18n ( " &Dynamic Word Wrap " ) , Key_F10 ,
i18n ( " &Dynamic Word Wrap " ) , Key_F10 ,
TQT_TQOBJECT ( this ) , TQT_SLOT ( toggleDynWordWrap ( ) ) ,
this , TQT_SLOT ( toggleDynWordWrap ( ) ) ,
ac , " view_dynamic_word_wrap " ) ;
ac , " view_dynamic_word_wrap " ) ;
a - > setWhatsThis ( i18n ( " If this option is checked, the text lines will be wrapped at the view border on the screen. " ) ) ;
a - > setWhatsThis ( i18n ( " If this option is checked, the text lines will be wrapped at the view border on the screen. " ) ) ;
a = m_setDynWrapIndicators = new TDESelectAction ( i18n ( " Dynamic Word Wrap Indicators " ) , 0 , ac , " dynamic_word_wrap_indicators " ) ;
a = m_setDynWrapIndicators = new TDESelectAction ( i18n ( " Dynamic Word Wrap Indicators " ) , 0 , ac , " dynamic_word_wrap_indicators " ) ;
a - > setWhatsThis ( i18n ( " Choose when the Dynamic Word Wrap Indicators should be displayed " ) ) ;
a - > setWhatsThis ( i18n ( " Choose when the Dynamic Word Wrap Indicators should be displayed " ) ) ;
connect ( m_setDynWrapIndicators , TQT_SIGNAL ( activated ( int ) ) , TQT_TQOBJECT ( this ) , TQT_SLOT ( setDynWrapIndicators ( int ) ) ) ;
connect ( m_setDynWrapIndicators , TQT_SIGNAL ( activated ( int ) ) , this , TQT_SLOT ( setDynWrapIndicators ( int ) ) ) ;
TQStringList list2 ;
TQStringList list2 ;
list2 . append ( i18n ( " &Off " ) ) ;
list2 . append ( i18n ( " &Off " ) ) ;
list2 . append ( i18n ( " Follow &Line Numbers " ) ) ;
list2 . append ( i18n ( " Follow &Line Numbers " ) ) ;
@ -376,14 +376,14 @@ void KateView::setupActions()
a = toggleAction = m_toggleFoldingMarkers = new TDEToggleAction (
a = toggleAction = m_toggleFoldingMarkers = new TDEToggleAction (
i18n ( " Show Folding &Markers " ) , Key_F9 ,
i18n ( " Show Folding &Markers " ) , Key_F9 ,
TQT_TQOBJECT ( this ) , TQT_SLOT ( toggleFoldingMarkers ( ) ) ,
this , TQT_SLOT ( toggleFoldingMarkers ( ) ) ,
ac , " view_folding_markers " ) ;
ac , " view_folding_markers " ) ;
a - > setWhatsThis ( i18n ( " You can choose if the codefolding marks should be shown, if codefolding is possible. " ) ) ;
a - > setWhatsThis ( i18n ( " You can choose if the codefolding marks should be shown, if codefolding is possible. " ) ) ;
toggleAction - > setCheckedState ( i18n ( " Hide Folding &Markers " ) ) ;
toggleAction - > setCheckedState ( i18n ( " Hide Folding &Markers " ) ) ;
a = m_toggleIconBar = toggleAction = new TDEToggleAction (
a = m_toggleIconBar = toggleAction = new TDEToggleAction (
i18n ( " Show &Icon Border " ) , Key_F6 ,
i18n ( " Show &Icon Border " ) , Key_F6 ,
TQT_TQOBJECT ( this ) , TQT_SLOT ( toggleIconBorder ( ) ) ,
this , TQT_SLOT ( toggleIconBorder ( ) ) ,
ac , " view_border " ) ;
ac , " view_border " ) ;
a = toggleAction ;
a = toggleAction ;
a - > setWhatsThis ( i18n ( " Show/hide the icon border.<BR><BR> The icon border shows bookmark symbols, for instance. " ) ) ;
a - > setWhatsThis ( i18n ( " Show/hide the icon border.<BR><BR> The icon border shows bookmark symbols, for instance. " ) ) ;
@ -391,21 +391,21 @@ void KateView::setupActions()
a = toggleAction = m_toggleLineNumbers = new TDEToggleAction (
a = toggleAction = m_toggleLineNumbers = new TDEToggleAction (
i18n ( " Show &Line Numbers " ) , Key_F11 ,
i18n ( " Show &Line Numbers " ) , Key_F11 ,
TQT_TQOBJECT ( this ) , TQT_SLOT ( toggleLineNumbersOn ( ) ) ,
this , TQT_SLOT ( toggleLineNumbersOn ( ) ) ,
ac , " view_line_numbers " ) ;
ac , " view_line_numbers " ) ;
a - > setWhatsThis ( i18n ( " Show/hide the line numbers on the left hand side of the view. " ) ) ;
a - > setWhatsThis ( i18n ( " Show/hide the line numbers on the left hand side of the view. " ) ) ;
toggleAction - > setCheckedState ( i18n ( " Hide &Line Numbers " ) ) ;
toggleAction - > setCheckedState ( i18n ( " Hide &Line Numbers " ) ) ;
a = m_toggleScrollBarMarks = toggleAction = new TDEToggleAction (
a = m_toggleScrollBarMarks = toggleAction = new TDEToggleAction (
i18n ( " Show Scroll&bar Marks " ) , 0 ,
i18n ( " Show Scroll&bar Marks " ) , 0 ,
TQT_TQOBJECT ( this ) , TQT_SLOT ( toggleScrollBarMarks ( ) ) ,
this , TQT_SLOT ( toggleScrollBarMarks ( ) ) ,
ac , " view_scrollbar_marks " ) ;
ac , " view_scrollbar_marks " ) ;
a - > setWhatsThis ( i18n ( " Show/hide the marks on the vertical scrollbar.<BR><BR>The marks, for instance, show bookmarks. " ) ) ;
a - > setWhatsThis ( i18n ( " Show/hide the marks on the vertical scrollbar.<BR><BR>The marks, for instance, show bookmarks. " ) ) ;
toggleAction - > setCheckedState ( i18n ( " Hide Scroll&bar Marks " ) ) ;
toggleAction - > setCheckedState ( i18n ( " Hide Scroll&bar Marks " ) ) ;
a = toggleAction = m_toggleWWMarker = new TDEToggleAction (
a = toggleAction = m_toggleWWMarker = new TDEToggleAction (
i18n ( " Show Static &Word Wrap Marker " ) , 0 ,
i18n ( " Show Static &Word Wrap Marker " ) , 0 ,
TQT_TQOBJECT ( this ) , TQT_SLOT ( toggleWWMarker ( ) ) ,
this , TQT_SLOT ( toggleWWMarker ( ) ) ,
ac , " view_word_wrap_marker " ) ;
ac , " view_word_wrap_marker " ) ;
a - > setWhatsThis ( i18n (
a - > setWhatsThis ( i18n (
" Show/hide the Word Wrap Marker, a vertical line drawn at the word "
" Show/hide the Word Wrap Marker, a vertical line drawn at the word "
@ -414,7 +414,7 @@ void KateView::setupActions()
a = m_switchCmdLine = new TDEAction (
a = m_switchCmdLine = new TDEAction (
i18n ( " Switch to Command Line " ) , Key_F7 ,
i18n ( " Switch to Command Line " ) , Key_F7 ,
TQT_TQOBJECT ( this ) , TQT_SLOT ( switchToCmdLine ( ) ) ,
this , TQT_SLOT ( switchToCmdLine ( ) ) ,
ac , " switch_to_cmd_line " ) ;
ac , " switch_to_cmd_line " ) ;
a - > setWhatsThis ( i18n ( " Show/hide the command line on the bottom of the view. " ) ) ;
a - > setWhatsThis ( i18n ( " Show/hide the command line on the bottom of the view. " ) ) ;
@ -426,10 +426,10 @@ void KateView::setupActions()
list . append ( " &Macintosh " ) ;
list . append ( " &Macintosh " ) ;
m_setEndOfLine - > setItems ( list ) ;
m_setEndOfLine - > setItems ( list ) ;
m_setEndOfLine - > setCurrentItem ( m_doc - > config ( ) - > eol ( ) ) ;
m_setEndOfLine - > setCurrentItem ( m_doc - > config ( ) - > eol ( ) ) ;
connect ( m_setEndOfLine , TQT_SIGNAL ( activated ( int ) ) , TQT_TQOBJECT ( this ) , TQT_SLOT ( setEol ( int ) ) ) ;
connect ( m_setEndOfLine , TQT_SIGNAL ( activated ( int ) ) , this , TQT_SLOT ( setEol ( int ) ) ) ;
// encoding menu
// encoding menu
new KateViewEncodingAction ( m_doc , this , i18n ( " E&ncoding " ) , TQT_TQOBJECT( ac) , " set_encoding " ) ;
new KateViewEncodingAction ( m_doc , this , i18n ( " E&ncoding " ) , ac, " set_encoding " ) ;
m_search - > createActions ( ac ) ;
m_search - > createActions ( ac ) ;
m_spell - > createActions ( ac ) ;
m_spell - > createActions ( ac ) ;
@ -437,144 +437,144 @@ void KateView::setupActions()
slotSelectionChanged ( ) ;
slotSelectionChanged ( ) ;
connect ( this , TQT_SIGNAL ( selectionChanged ( ) ) , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotSelectionChanged ( ) ) ) ;
connect ( this , TQT_SIGNAL ( selectionChanged ( ) ) , this , TQT_SLOT ( slotSelectionChanged ( ) ) ) ;
}
}
void KateView : : setupEditActions ( )
void KateView : : setupEditActions ( )
{
{
m_editActions = new TDEActionCollection ( m_viewInternal , TQT_TQOBJECT ( this ) , " edit_actions " ) ;
m_editActions = new TDEActionCollection ( m_viewInternal , this , " edit_actions " ) ;
TDEActionCollection * ac = m_editActions ;
TDEActionCollection * ac = m_editActions ;
new TDEAction (
new TDEAction (
i18n ( " Move Word Left " ) , CTRL + Key_Left ,
i18n ( " Move Word Left " ) , CTRL + Key_Left ,
TQT_TQOBJECT ( this ) , TQT_SLOT ( wordLeft ( ) ) ,
this , TQT_SLOT ( wordLeft ( ) ) ,
ac , " word_left " ) ;
ac , " word_left " ) ;
new TDEAction (
new TDEAction (
i18n ( " Select Character Left " ) , SHIFT + Key_Left ,
i18n ( " Select Character Left " ) , SHIFT + Key_Left ,
TQT_TQOBJECT ( this ) , TQT_SLOT ( shiftCursorLeft ( ) ) ,
this , TQT_SLOT ( shiftCursorLeft ( ) ) ,
ac , " select_char_left " ) ;
ac , " select_char_left " ) ;
new TDEAction (
new TDEAction (
i18n ( " Select Word Left " ) , SHIFT + CTRL + Key_Left ,
i18n ( " Select Word Left " ) , SHIFT + CTRL + Key_Left ,
TQT_TQOBJECT ( this ) , TQT_SLOT ( shiftWordLeft ( ) ) ,
this , TQT_SLOT ( shiftWordLeft ( ) ) ,
ac , " select_word_left " ) ;
ac , " select_word_left " ) ;
new TDEAction (
new TDEAction (
i18n ( " Move Word Right " ) , CTRL + Key_Right ,
i18n ( " Move Word Right " ) , CTRL + Key_Right ,
TQT_TQOBJECT ( this ) , TQT_SLOT ( wordRight ( ) ) ,
this , TQT_SLOT ( wordRight ( ) ) ,
ac , " word_right " ) ;
ac , " word_right " ) ;
new TDEAction (
new TDEAction (
i18n ( " Select Character Right " ) , SHIFT + Key_Right ,
i18n ( " Select Character Right " ) , SHIFT + Key_Right ,
TQT_TQOBJECT ( this ) , TQT_SLOT ( shiftCursorRight ( ) ) ,
this , TQT_SLOT ( shiftCursorRight ( ) ) ,
ac , " select_char_right " ) ;
ac , " select_char_right " ) ;
new TDEAction (
new TDEAction (
i18n ( " Select Word Right " ) , SHIFT + CTRL + Key_Right ,
i18n ( " Select Word Right " ) , SHIFT + CTRL + Key_Right ,
TQT_TQOBJECT ( this ) , TQT_SLOT ( shiftWordRight ( ) ) ,
this , TQT_SLOT ( shiftWordRight ( ) ) ,
ac , " select_word_right " ) ;
ac , " select_word_right " ) ;
new TDEAction (
new TDEAction (
i18n ( " Move to Beginning of Line " ) , Key_Home ,
i18n ( " Move to Beginning of Line " ) , Key_Home ,
TQT_TQOBJECT ( this ) , TQT_SLOT ( home ( ) ) ,
this , TQT_SLOT ( home ( ) ) ,
ac , " beginning_of_line " ) ;
ac , " beginning_of_line " ) ;
new TDEAction (
new TDEAction (
i18n ( " Move to Beginning of Document " ) , TDEStdAccel : : home ( ) ,
i18n ( " Move to Beginning of Document " ) , TDEStdAccel : : home ( ) ,
TQT_TQOBJECT ( this ) , TQT_SLOT ( top ( ) ) ,
this , TQT_SLOT ( top ( ) ) ,
ac , " beginning_of_document " ) ;
ac , " beginning_of_document " ) ;
new TDEAction (
new TDEAction (
i18n ( " Select to Beginning of Line " ) , SHIFT + Key_Home ,
i18n ( " Select to Beginning of Line " ) , SHIFT + Key_Home ,
TQT_TQOBJECT ( this ) , TQT_SLOT ( shiftHome ( ) ) ,
this , TQT_SLOT ( shiftHome ( ) ) ,
ac , " select_beginning_of_line " ) ;
ac , " select_beginning_of_line " ) ;
new TDEAction (
new TDEAction (
i18n ( " Select to Beginning of Document " ) , SHIFT + CTRL + Key_Home ,
i18n ( " Select to Beginning of Document " ) , SHIFT + CTRL + Key_Home ,
TQT_TQOBJECT ( this ) , TQT_SLOT ( shiftTop ( ) ) ,
this , TQT_SLOT ( shiftTop ( ) ) ,
ac , " select_beginning_of_document " ) ;
ac , " select_beginning_of_document " ) ;
new TDEAction (
new TDEAction (
i18n ( " Move to End of Line " ) , Key_End ,
i18n ( " Move to End of Line " ) , Key_End ,
TQT_TQOBJECT ( this ) , TQT_SLOT ( end ( ) ) ,
this , TQT_SLOT ( end ( ) ) ,
ac , " end_of_line " ) ;
ac , " end_of_line " ) ;
new TDEAction (
new TDEAction (
i18n ( " Move to End of Document " ) , TDEStdAccel : : end ( ) ,
i18n ( " Move to End of Document " ) , TDEStdAccel : : end ( ) ,
TQT_TQOBJECT ( this ) , TQT_SLOT ( bottom ( ) ) ,
this , TQT_SLOT ( bottom ( ) ) ,
ac , " end_of_document " ) ;
ac , " end_of_document " ) ;
new TDEAction (
new TDEAction (
i18n ( " Select to End of Line " ) , SHIFT + Key_End ,
i18n ( " Select to End of Line " ) , SHIFT + Key_End ,
TQT_TQOBJECT ( this ) , TQT_SLOT ( shiftEnd ( ) ) ,
this , TQT_SLOT ( shiftEnd ( ) ) ,
ac , " select_end_of_line " ) ;
ac , " select_end_of_line " ) ;
new TDEAction (
new TDEAction (
i18n ( " Select to End of Document " ) , SHIFT + CTRL + Key_End ,
i18n ( " Select to End of Document " ) , SHIFT + CTRL + Key_End ,
TQT_TQOBJECT ( this ) , TQT_SLOT ( shiftBottom ( ) ) ,
this , TQT_SLOT ( shiftBottom ( ) ) ,
ac , " select_end_of_document " ) ;
ac , " select_end_of_document " ) ;
new TDEAction (
new TDEAction (
i18n ( " Select to Previous Line " ) , SHIFT + Key_Up ,
i18n ( " Select to Previous Line " ) , SHIFT + Key_Up ,
TQT_TQOBJECT ( this ) , TQT_SLOT ( shiftUp ( ) ) ,
this , TQT_SLOT ( shiftUp ( ) ) ,
ac , " select_line_up " ) ;
ac , " select_line_up " ) ;
new TDEAction (
new TDEAction (
i18n ( " Scroll Line Up " ) , " " , CTRL + Key_Up ,
i18n ( " Scroll Line Up " ) , " " , CTRL + Key_Up ,
TQT_TQOBJECT ( this ) , TQT_SLOT ( scrollUp ( ) ) ,
this , TQT_SLOT ( scrollUp ( ) ) ,
ac , " scroll_line_up " ) ;
ac , " scroll_line_up " ) ;
new TDEAction ( i18n ( " Move to Next Line " ) , Key_Down , TQT_TQOBJECT ( this ) , TQT_SLOT ( down ( ) ) ,
new TDEAction ( i18n ( " Move to Next Line " ) , Key_Down , this , TQT_SLOT ( down ( ) ) ,
ac , " move_line_down " ) ;
ac , " move_line_down " ) ;
new TDEAction ( i18n ( " Move to Previous Line " ) , Key_Up , TQT_TQOBJECT ( this ) , TQT_SLOT ( up ( ) ) ,
new TDEAction ( i18n ( " Move to Previous Line " ) , Key_Up , this , TQT_SLOT ( up ( ) ) ,
ac , " move_line_up " ) ;
ac , " move_line_up " ) ;
new TDEAction ( i18n ( " Move Character Right " ) , Key_Right , TQT_TQOBJECT ( this ) ,
new TDEAction ( i18n ( " Move Character Right " ) , Key_Right , this ,
TQT_SLOT ( cursorRight ( ) ) , ac , " move_cursor_right " ) ;
TQT_SLOT ( cursorRight ( ) ) , ac , " move_cursor_right " ) ;
new TDEAction ( i18n ( " Move Character Left " ) , Key_Left , TQT_TQOBJECT ( this ) , TQT_SLOT ( cursorLeft ( ) ) ,
new TDEAction ( i18n ( " Move Character Left " ) , Key_Left , this , TQT_SLOT ( cursorLeft ( ) ) ,
ac , " move_cusor_left " ) ;
ac , " move_cusor_left " ) ;
new TDEAction (
new TDEAction (
i18n ( " Select to Next Line " ) , SHIFT + Key_Down ,
i18n ( " Select to Next Line " ) , SHIFT + Key_Down ,
TQT_TQOBJECT ( this ) , TQT_SLOT ( shiftDown ( ) ) ,
this , TQT_SLOT ( shiftDown ( ) ) ,
ac , " select_line_down " ) ;
ac , " select_line_down " ) ;
new TDEAction (
new TDEAction (
i18n ( " Scroll Line Down " ) , CTRL + Key_Down ,
i18n ( " Scroll Line Down " ) , CTRL + Key_Down ,
TQT_TQOBJECT ( this ) , TQT_SLOT ( scrollDown ( ) ) ,
this , TQT_SLOT ( scrollDown ( ) ) ,
ac , " scroll_line_down " ) ;
ac , " scroll_line_down " ) ;
new TDEAction (
new TDEAction (
i18n ( " Scroll Page Up " ) , TDEStdAccel : : prior ( ) ,
i18n ( " Scroll Page Up " ) , TDEStdAccel : : prior ( ) ,
TQT_TQOBJECT ( this ) , TQT_SLOT ( pageUp ( ) ) ,
this , TQT_SLOT ( pageUp ( ) ) ,
ac , " scroll_page_up " ) ;
ac , " scroll_page_up " ) ;
new TDEAction (
new TDEAction (
i18n ( " Select Page Up " ) , SHIFT + Key_PageUp ,
i18n ( " Select Page Up " ) , SHIFT + Key_PageUp ,
TQT_TQOBJECT ( this ) , TQT_SLOT ( shiftPageUp ( ) ) ,
this , TQT_SLOT ( shiftPageUp ( ) ) ,
ac , " select_page_up " ) ;
ac , " select_page_up " ) ;
new TDEAction (
new TDEAction (
i18n ( " Move to Top of View " ) , CTRL + Key_PageUp ,
i18n ( " Move to Top of View " ) , CTRL + Key_PageUp ,
TQT_TQOBJECT ( this ) , TQT_SLOT ( topOfView ( ) ) ,
this , TQT_SLOT ( topOfView ( ) ) ,
ac , " move_top_of_view " ) ;
ac , " move_top_of_view " ) ;
new TDEAction (
new TDEAction (
i18n ( " Select to Top of View " ) , CTRL + SHIFT + Key_PageUp ,
i18n ( " Select to Top of View " ) , CTRL + SHIFT + Key_PageUp ,
TQT_TQOBJECT ( this ) , TQT_SLOT ( shiftTopOfView ( ) ) ,
this , TQT_SLOT ( shiftTopOfView ( ) ) ,
ac , " select_top_of_view " ) ;
ac , " select_top_of_view " ) ;
new TDEAction (
new TDEAction (
i18n ( " Scroll Page Down " ) , TDEStdAccel : : next ( ) ,
i18n ( " Scroll Page Down " ) , TDEStdAccel : : next ( ) ,
TQT_TQOBJECT ( this ) , TQT_SLOT ( pageDown ( ) ) ,
this , TQT_SLOT ( pageDown ( ) ) ,
ac , " scroll_page_down " ) ;
ac , " scroll_page_down " ) ;
new TDEAction (
new TDEAction (
i18n ( " Select Page Down " ) , SHIFT + Key_PageDown ,
i18n ( " Select Page Down " ) , SHIFT + Key_PageDown ,
TQT_TQOBJECT ( this ) , TQT_SLOT ( shiftPageDown ( ) ) ,
this , TQT_SLOT ( shiftPageDown ( ) ) ,
ac , " select_page_down " ) ;
ac , " select_page_down " ) ;
new TDEAction (
new TDEAction (
i18n ( " Move to Bottom of View " ) , CTRL + Key_PageDown ,
i18n ( " Move to Bottom of View " ) , CTRL + Key_PageDown ,
TQT_TQOBJECT ( this ) , TQT_SLOT ( bottomOfView ( ) ) ,
this , TQT_SLOT ( bottomOfView ( ) ) ,
ac , " move_bottom_of_view " ) ;
ac , " move_bottom_of_view " ) ;
new TDEAction (
new TDEAction (
i18n ( " Select to Bottom of View " ) , CTRL + SHIFT + Key_PageDown ,
i18n ( " Select to Bottom of View " ) , CTRL + SHIFT + Key_PageDown ,
TQT_TQOBJECT ( this ) , TQT_SLOT ( shiftBottomOfView ( ) ) ,
this , TQT_SLOT ( shiftBottomOfView ( ) ) ,
ac , " select_bottom_of_view " ) ;
ac , " select_bottom_of_view " ) ;
new TDEAction (
new TDEAction (
i18n ( " Move to Matching Bracket " ) , CTRL + Key_6 ,
i18n ( " Move to Matching Bracket " ) , CTRL + Key_6 ,
TQT_TQOBJECT ( this ) , TQT_SLOT ( toMatchingBracket ( ) ) ,
this , TQT_SLOT ( toMatchingBracket ( ) ) ,
ac , " to_matching_bracket " ) ;
ac , " to_matching_bracket " ) ;
new TDEAction (
new TDEAction (
i18n ( " Select to Matching Bracket " ) , SHIFT + CTRL + Key_6 ,
i18n ( " Select to Matching Bracket " ) , SHIFT + CTRL + Key_6 ,
TQT_TQOBJECT ( this ) , TQT_SLOT ( shiftToMatchingBracket ( ) ) ,
this , TQT_SLOT ( shiftToMatchingBracket ( ) ) ,
ac , " select_matching_bracket " ) ;
ac , " select_matching_bracket " ) ;
// anders: shortcuts doing any changes should not be created in browserextension
// anders: shortcuts doing any changes should not be created in browserextension
@ -582,30 +582,30 @@ void KateView::setupEditActions()
{
{
new TDEAction (
new TDEAction (
i18n ( " Transpose Characters " ) , CTRL + Key_T ,
i18n ( " Transpose Characters " ) , CTRL + Key_T ,
TQT_TQOBJECT ( this ) , TQT_SLOT ( transpose ( ) ) ,
this , TQT_SLOT ( transpose ( ) ) ,
ac , " transpose_char " ) ;
ac , " transpose_char " ) ;
new TDEAction (
new TDEAction (
i18n ( " Delete Line " ) , CTRL + Key_K ,
i18n ( " Delete Line " ) , CTRL + Key_K ,
TQT_TQOBJECT ( this ) , TQT_SLOT ( killLine ( ) ) ,
this , TQT_SLOT ( killLine ( ) ) ,
ac , " delete_line " ) ;
ac , " delete_line " ) ;
new TDEAction (
new TDEAction (
i18n ( " Delete Word Left " ) , TDEStdAccel : : deleteWordBack ( ) ,
i18n ( " Delete Word Left " ) , TDEStdAccel : : deleteWordBack ( ) ,
TQT_TQOBJECT ( this ) , TQT_SLOT ( deleteWordLeft ( ) ) ,
this , TQT_SLOT ( deleteWordLeft ( ) ) ,
ac , " delete_word_left " ) ;
ac , " delete_word_left " ) ;
new TDEAction (
new TDEAction (
i18n ( " Delete Word Right " ) , TDEStdAccel : : deleteWordForward ( ) ,
i18n ( " Delete Word Right " ) , TDEStdAccel : : deleteWordForward ( ) ,
TQT_TQOBJECT ( this ) , TQT_SLOT ( deleteWordRight ( ) ) ,
this , TQT_SLOT ( deleteWordRight ( ) ) ,
ac , " delete_word_right " ) ;
ac , " delete_word_right " ) ;
new TDEAction ( i18n ( " Delete Next Character " ) , Key_Delete ,
new TDEAction ( i18n ( " Delete Next Character " ) , Key_Delete ,
TQT_TQOBJECT ( this ) , TQT_SLOT ( keyDelete ( ) ) ,
this , TQT_SLOT ( keyDelete ( ) ) ,
ac , " delete_next_character " ) ;
ac , " delete_next_character " ) ;
TDEAction * a = new TDEAction ( i18n ( " Backspace " ) , Key_Backspace ,
TDEAction * a = new TDEAction ( i18n ( " Backspace " ) , Key_Backspace ,
TQT_TQOBJECT ( this ) , TQT_SLOT ( backspace ( ) ) ,
this , TQT_SLOT ( backspace ( ) ) ,
ac , " backspace " ) ;
ac , " backspace " ) ;
TDEShortcut cut = a - > shortcut ( ) ;
TDEShortcut cut = a - > shortcut ( ) ;
cut . append ( KKey ( SHIFT + Key_Backspace ) ) ;
cut . append ( KKey ( SHIFT + Key_Backspace ) ) ;
@ -613,9 +613,9 @@ void KateView::setupEditActions()
}
}
connect ( this , TQT_SIGNAL ( gotFocus ( Kate : : View * ) ) ,
connect ( this , TQT_SIGNAL ( gotFocus ( Kate : : View * ) ) ,
TQT_TQOBJECT ( this ) , TQT_SLOT ( slotGotFocus ( ) ) ) ;
this , TQT_SLOT ( slotGotFocus ( ) ) ) ;
connect ( this , TQT_SIGNAL ( lostFocus ( Kate : : View * ) ) ,
connect ( this , TQT_SIGNAL ( lostFocus ( Kate : : View * ) ) ,
TQT_TQOBJECT ( this ) , TQT_SLOT ( slotLostFocus ( ) ) ) ;
this , TQT_SLOT ( slotLostFocus ( ) ) ) ;
m_editActions - > readShortcutSettings ( " Katepart Shortcuts " ) ;
m_editActions - > readShortcutSettings ( " Katepart Shortcuts " ) ;
@ -633,14 +633,14 @@ void KateView::setupCodeFolding()
new TDEAction ( i18n ( " Collapse Toplevel " ) , CTRL + SHIFT + Key_Minus ,
new TDEAction ( i18n ( " Collapse Toplevel " ) , CTRL + SHIFT + Key_Minus ,
m_doc - > foldingTree ( ) , TQT_SLOT ( collapseToplevelNodes ( ) ) , ac , " folding_toplevel " ) ;
m_doc - > foldingTree ( ) , TQT_SLOT ( collapseToplevelNodes ( ) ) , ac , " folding_toplevel " ) ;
new TDEAction ( i18n ( " Expand Toplevel " ) , CTRL + SHIFT + Key_Plus ,
new TDEAction ( i18n ( " Expand Toplevel " ) , CTRL + SHIFT + Key_Plus ,
TQT_TQOBJECT ( this ) , TQT_SLOT ( slotExpandToplevel ( ) ) , ac , " folding_expandtoplevel " ) ;
this , TQT_SLOT ( slotExpandToplevel ( ) ) , ac , " folding_expandtoplevel " ) ;
new TDEAction ( i18n ( " Collapse One Local Level " ) , CTRL + Key_Minus ,
new TDEAction ( i18n ( " Collapse One Local Level " ) , CTRL + Key_Minus ,
TQT_TQOBJECT ( this ) , TQT_SLOT ( slotCollapseLocal ( ) ) , ac , " folding_collapselocal " ) ;
this , TQT_SLOT ( slotCollapseLocal ( ) ) , ac , " folding_collapselocal " ) ;
new TDEAction ( i18n ( " Expand One Local Level " ) , CTRL + Key_Plus ,
new TDEAction ( i18n ( " Expand One Local Level " ) , CTRL + Key_Plus ,
TQT_TQOBJECT ( this ) , TQT_SLOT ( slotExpandLocal ( ) ) , ac , " folding_expandlocal " ) ;
this , TQT_SLOT ( slotExpandLocal ( ) ) , ac , " folding_expandlocal " ) ;
# ifdef DEBUGACCELS
# ifdef DEBUGACCELS
TDEAccel * debugAccels = new TDEAccel ( this , TQT_TQOBJECT ( this ) ) ;
TDEAccel * debugAccels = new TDEAccel ( this , this ) ;
debugAccels - > insert ( " KATE_DUMP_REGION_TREE " , i18n ( " Show the code folding region tree " ) , " " , " Ctrl+Shift+Alt+D " , m_doc , TQT_SLOT ( dumpRegionTree ( ) ) ) ;
debugAccels - > insert ( " KATE_DUMP_REGION_TREE " , i18n ( " Show the code folding region tree " ) , " " , " Ctrl+Shift+Alt+D " , m_doc , TQT_SLOT ( dumpRegionTree ( ) ) ) ;
debugAccels - > insert ( " KATE_TEMPLATE_TEST " , i18n ( " Basic template code test " ) , " " , " Ctrl+Shift+Alt+T " , m_doc , TQT_SLOT ( testTemplateCode ( ) ) ) ;
debugAccels - > insert ( " KATE_TEMPLATE_TEST " , i18n ( " Basic template code test " ) , " " , " Ctrl+Shift+Alt+T " , m_doc , TQT_SLOT ( testTemplateCode ( ) ) ) ;
debugAccels - > setEnabled ( true ) ;
debugAccels - > setEnabled ( true ) ;
@ -670,15 +670,15 @@ void KateView::setupCodeCompletion()
{
{
m_codeCompletion = new KateCodeCompletion ( this ) ;
m_codeCompletion = new KateCodeCompletion ( this ) ;
connect ( m_codeCompletion , TQT_SIGNAL ( completionAborted ( ) ) ,
connect ( m_codeCompletion , TQT_SIGNAL ( completionAborted ( ) ) ,
TQT_TQOBJECT ( this ) , TQT_SIGNAL ( completionAborted ( ) ) ) ;
this , TQT_SIGNAL ( completionAborted ( ) ) ) ;
connect ( m_codeCompletion , TQT_SIGNAL ( completionDone ( ) ) ,
connect ( m_codeCompletion , TQT_SIGNAL ( completionDone ( ) ) ,
TQT_TQOBJECT ( this ) , TQT_SIGNAL ( completionDone ( ) ) ) ;
this , TQT_SIGNAL ( completionDone ( ) ) ) ;
connect ( m_codeCompletion , TQT_SIGNAL ( argHintHidden ( ) ) ,
connect ( m_codeCompletion , TQT_SIGNAL ( argHintHidden ( ) ) ,
TQT_TQOBJECT ( this ) , TQT_SIGNAL ( argHintHidden ( ) ) ) ;
this , TQT_SIGNAL ( argHintHidden ( ) ) ) ;
connect ( m_codeCompletion , TQT_SIGNAL ( completionDone ( KTextEditor : : CompletionEntry ) ) ,
connect ( m_codeCompletion , TQT_SIGNAL ( completionDone ( KTextEditor : : CompletionEntry ) ) ,
TQT_TQOBJECT ( this ) , TQT_SIGNAL ( completionDone ( KTextEditor : : CompletionEntry ) ) ) ;
this , TQT_SIGNAL ( completionDone ( KTextEditor : : CompletionEntry ) ) ) ;
connect ( m_codeCompletion , TQT_SIGNAL ( filterInsertString ( KTextEditor : : CompletionEntry * , TQString * ) ) ,
connect ( m_codeCompletion , TQT_SIGNAL ( filterInsertString ( KTextEditor : : CompletionEntry * , TQString * ) ) ,
TQT_TQOBJECT ( this ) , TQT_SIGNAL ( filterInsertString ( KTextEditor : : CompletionEntry * , TQString * ) ) ) ;
this , TQT_SIGNAL ( filterInsertString ( KTextEditor : : CompletionEntry * , TQString * ) ) ) ;
}
}
void KateView : : slotGotFocus ( )
void KateView : : slotGotFocus ( )