source: ntrip/branches/BNC_2.12/qwt/qwt_plot_xml.cpp@ 9208

Last change on this file since 9208 was 4271, checked in by mervart, 12 years ago
File size: 1.1 KB
Line 
1/* -*- mode: C++ ; c-file-style: "stroustrup" -*- *****************************
2 * Qwt Widget Library
3 * Copyright (C) 1997 Josef Wilgen
4 * Copyright (C) 2002 Uwe Rathmann
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the Qwt License, Version 1.0
8 *****************************************************************************/
9
10#include "qwt_plot.h"
11
12/*!
13 This method is intended for manipulating the plot widget
14 from a specific editor in the Qwt designer plugin.
15
16 \warning The plot editor has never been implemented.
17*/
18void QwtPlot::applyProperties( const QString & /* xmlDocument */ )
19{
20#if 0
21 // Temporary dummy code, for designer tests
22 setTitle( xmlDocument );
23 replot();
24#endif
25}
26
27/*!
28 This method is intended for manipulating the plot widget
29 from a specific editor in the Qwt designer plugin.
30
31 \warning The plot editor has never been implemented.
32*/
33QString QwtPlot::grabProperties() const
34{
35#if 0
36 // Temporary dummy code, for designer tests
37 return title().text();
38#else
39 return QString::null;
40#endif
41}
Note: See TracBrowser for help on using the repository browser.