~iwarford/do-plugins/fart-plugin-fwiw

« back to all changes in this revision

Viewing changes to Bibtex/src/BibtexItem.cs

  • Committer: Jason Jones
  • Date: 2008-12-24 04:45:02 UTC
  • mfrom: (335.1.9 do-plugins)
  • Revision ID: jasonedwardjones@gmail.com-20081224044502-ra56ym06cp1iqs7t
MergedĀ fromĀ trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* BibtexItem.cs
 
2
 *
 
3
 * GNOME Do is the legal property of its developers. Please refer to the
 
4
 * COPYRIGHT file distributed with this
 
5
 * source distribution.
 
6
 *
 
7
 * This program is free software: you can redistribute it and/or modify
 
8
 * it under the terms of the GNU General Public License as published by
 
9
 * the Free Software Foundation, either version 3 of the License, or
 
10
 * (at your option) any later version.
 
11
 *
 
12
 * This program is distributed in the hope that it will be useful,
 
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
 * GNU General Public License for more details.
 
16
 *
 
17
 * You should have received a copy of the GNU General Public License
 
18
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
19
 */
 
20
using System;
 
21
using System.IO;
 
22
using Do.Platform;
 
23
using Do.Universe;
 
24
using Do.Universe.Linux;
 
25
using Do.Platform.Linux;
 
26
 
 
27
 
 
28
namespace Do.Addins.Bibtex
 
29
{
 
30
        public class BibtexItem : Item
 
31
        {
 
32
                string title;
 
33
                string authors;
 
34
                string citekey;
 
35
 
 
36
                public BibtexItem (string title, string authors, string citekey, string path):
 
37
                base ()
 
38
                {
 
39
                        this.title = title;
 
40
                        this.authors = authors;
 
41
                        this.citekey = citekey;
 
42
                }
 
43
 
 
44
                //Name is text under the icon
 
45
                public override string Name { get { return title; } }
 
46
                //Des is text below the 2 icon displays, is not searchable
 
47
                public override string Description { get { return authors; } }
 
48
                //Cite key is used for citations in latex documents
 
49
                virtual public string Citekey { get { return citekey; } }
 
50
                //I dont know where this is displayed. :(
 
51
                public string Text { get { return title; } }
 
52
                
 
53
                public override string Icon {
 
54
                        get{
 
55
                                return "stock_dialog_warning";
 
56
                        }
 
57
                }
 
58
 
 
59
        }
 
60
}