Changeset 12588 in osm for applications/editors/josm/plugins/wmsplugin
- Timestamp:
- 2008-12-25T19:01:06+01:00 (16 years ago)
- Location:
- applications/editors/josm/plugins/wmsplugin
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/wmsplugin
- Property svn:ignore
-
old new 1 1 build 2 2 dist 3 webkit-image.h
-
- Property svn:ignore
-
applications/editors/josm/plugins/wmsplugin/build.xml
r12472 r12588 56 56 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/> 57 57 <attribute name="Plugin-Description" value="Allows external WMS resources to be displayed." /> 58 <attribute name="Plugin-Mainversion" value="11 53" />58 <attribute name="Plugin-Mainversion" value="1180" /> 59 59 </manifest> 60 60 </jar> -
applications/editors/josm/plugins/wmsplugin/src/wmsplugin/WMSPreferenceEditor.java
r12321 r12588 109 109 } 110 110 111 public voidok() {111 public boolean ok() { 112 112 boolean change = false; 113 113 for (int i = 0; i < model.getRowCount(); ++i) { … … 145 145 146 146 if (change) WMSPlugin.refreshMenu(); 147 return false; 147 148 } 148 149 -
applications/editors/josm/plugins/wmsplugin/webkit-image.cpp
r12421 r12588 22 22 #define BINARYSTDOUT 23 23 #endif 24 25 #define WIDTH 200026 24 27 25 class Save : public QObject … … 74 72 QObject::connect(page, SIGNAL(loadFinished(bool)), s, SLOT(loaded(bool))); 75 73 QObject::connect(s, SIGNAL(finish(void)), &a, SLOT(quit())); 74 /* set some useful defaults for a webpage */ 75 // page->setViewportSize(QSize(1280,1024)); 76 // page->mainFrame()->setScrollBarPolicy(Qt::Horizontal, Qt::ScrollBarAlwaysOff); 77 // page->mainFrame()->setScrollBarPolicy(Qt::Vertical, Qt::ScrollBarAlwaysOff); 76 78 page->mainFrame()->load (QUrl(url)); 77 79 return a.exec();
Note:
See TracChangeset
for help on using the changeset viewer.