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
|
/***************************************************************************
* Copyright (C) 2005 by David Saxton *
* david@bluehaze.org *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
***************************************************************************/
#include "docmanager.h"
#include "languagemanager.h"
#include "logview.h"
#include "ktechlab.h"
#include "ktempfile.h"
#include "src/core/ktlconfig.h"
#include "outputmethoddlg.h"
#include "processchain.h"
#include "projectmanager.h"
#include "microbe.h"
#include "gpasm.h"
#include "gpdasm.h"
#include <kdockwidget.h>
#include <kiconloader.h>
#include <klocale.h>
#include <tqwhatsthis.h>
#include <assert.h>
LanguageManager * LanguageManager::m_pSelf = 0l;
LanguageManager * LanguageManager::self( KateMDI::ToolView * tqparent, KTechlab * ktl )
{
if (!m_pSelf)
{
assert(tqparent);
assert(ktl);
m_pSelf = new LanguageManager( tqparent, ktl );
}
return m_pSelf;
}
LanguageManager::LanguageManager( KateMDI::ToolView * tqparent, KTechlab * ktl )
: TQObject((TQObject*)ktl)
{
p_ktechlab = ktl;
m_logView = new LogView( tqparent, "LanguageManager LogView");
TQWhatsThis::add( m_logView, i18n("These messages show the output of language-related functionality such as compiling and assembling.<br><br>For error messages, clicking on the line will automatically open up the file at the position of the error.") );
connect( m_logView, TQT_SIGNAL(paraClicked(const TQString&, MessageInfo )), this, TQT_SLOT(slotParaClicked(const TQString&, MessageInfo )) );
reset();
}
LanguageManager::~LanguageManager()
{
}
void LanguageManager::reset()
{
m_logView->clear();
}
ProcessChain * LanguageManager::compile( ProcessOptions options )
{
if ( KTLConfig::raiseMessagesLog() )
p_ktechlab->showToolView( p_ktechlab->toolView( toolViewIdentifier() ) );
return new ProcessChain( options, p_ktechlab );
}
ProcessListChain * LanguageManager::compile( ProcessOptionsList pol )
{
if ( KTLConfig::raiseMessagesLog() )
p_ktechlab->showToolView( p_ktechlab->toolView( toolViewIdentifier() ) );
return new ProcessListChain( pol, p_ktechlab );
}
void LanguageManager::slotError( const TQString &error, MessageInfo messageInfo )
{
m_logView->addOutput( error, LogView::ot_error, messageInfo );
}
void LanguageManager::slotWarning( const TQString &error, MessageInfo messageInfo )
{
m_logView->addOutput( error, LogView::ot_warning, messageInfo );
}
void LanguageManager::slotMessage( const TQString &error, MessageInfo messageInfo )
{
m_logView->addOutput( error, LogView::ot_message, messageInfo );
}
void LanguageManager::slotParaClicked( const TQString& message, MessageInfo messageInfo )
{
Q_UNUSED(message);
DocManager::self()->gotoTextLine( messageInfo.fileURL(), messageInfo.fileLine() );
}
#include "languagemanager.moc"
|