OSDN Git Service

It's 2011 now.
[qt-creator-jp/qt-creator-jp.git] / src / plugins / bookmarks / bookmark.cpp
1 /**************************************************************************
2 **
3 ** This file is part of Qt Creator
4 **
5 ** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
6 **
7 ** Contact: Nokia Corporation (qt-info@nokia.com)
8 **
9 ** No Commercial Usage
10 **
11 ** This file contains pre-release code and may not be distributed.
12 ** You may use this file in accordance with the terms and conditions
13 ** contained in the Technology Preview License Agreement accompanying
14 ** this package.
15 **
16 ** GNU Lesser General Public License Usage
17 **
18 ** Alternatively, this file may be used under the terms of the GNU Lesser
19 ** General Public License version 2.1 as published by the Free Software
20 ** Foundation and appearing in the file LICENSE.LGPL included in the
21 ** packaging of this file.  Please review the following information to
22 ** ensure the GNU Lesser General Public License version 2.1 requirements
23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24 **
25 ** In addition, as a special exception, Nokia gives you certain additional
26 ** rights.  These rights are described in the Nokia Qt LGPL Exception
27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 **
29 ** If you have questions regarding the use of this file, please contact
30 ** Nokia at qt-info@nokia.com.
31 **
32 **************************************************************************/
33
34 #include "bookmark.h"
35 #include "bookmarkmanager.h"
36
37 #include <QtCore/QDebug>
38 #include <QtGui/QTextBlock>
39
40 using namespace Bookmarks::Internal;
41
42 Bookmark::Bookmark(const QString& fileName, int lineNumber, BookmarkManager *manager) :
43     BaseTextMark(fileName, lineNumber),
44     m_manager(manager),
45     m_fileInfo(fileName),
46     m_fileName(fileName),
47     m_onlyFile(m_fileInfo.fileName()),
48     m_path(m_fileInfo.path()),
49     m_lineNumber(lineNumber)
50 {
51 }
52
53 QIcon Bookmark::icon() const
54 {
55     return m_manager->bookmarkIcon();
56 }
57
58 void Bookmark::removedFromEditor()
59 {
60     m_manager->removeBookmark(this);
61 }
62
63 void Bookmark::updateLineNumber(int lineNumber)
64 {
65     if (lineNumber != m_lineNumber) {
66         m_lineNumber = lineNumber;
67         m_manager->updateBookmark(this);
68     }
69 }
70
71 void Bookmark::updateBlock(const QTextBlock &block)
72 {
73     if (m_lineText != block.text()) {
74         m_lineText = block.text();
75         m_manager->updateBookmark(this);
76     }
77 }
78
79 QString Bookmark::lineText() const
80 {
81     return m_lineText;
82 }
83
84 QString Bookmark::filePath() const
85 {
86     return m_fileName;
87 }
88
89 QString Bookmark::fileName() const
90 {
91     return m_onlyFile;
92 }
93
94 QString Bookmark::path() const
95 {
96     return m_path;
97 }