6

I'm only new to QGIS and Python so this may exists already, and hopefully be easy to do.

What I'm hoping to do sometime in the future is build a map book generator using QGIS as the base. In order to do this I need to be able to select all the labels in the composer and replace some tags, so something like $NAME$ would replace with a variable the user has set at runtime.

I have been having a look at the QGIS APIs [and source] but just can't seem to get it to do what I need. The code I have so far:

composerList = self.iface.activeComposers()
if(len(composerList) < 1):
      return

composerView = composerList[0]
composition = composerView.composition()
if(composition is None):
      return

for item in composition.selectedComposerItems():
//Need to check for QgsComposerLabel type and update the text.

I'm stuck when it comes to checking the type of the current item in Python, selectedComposerItems() just returns each item as a QgsComposerItem and calling displayText() fails because it doesn't exists on the type QgsComposerItem.

I have tried the following code but it crashes QGIS when it hits a legend or scale bar:

for item in composition.selectedComposerItems():
    try:
        item.__class__ = qgis.core.QgsComposerLabel
        if item.displayText() == "$NAME$":
            print "I found one"
            item.setText("Hello World")
    except:
        print "Fail"

The idea was to just try setting __class__ on every item as qgis.core.QgsComposerLabel and if it throws an exception then I know it's not a label, but at the moment if it hits a legend or scale bar it crashes QGIS which is not good.

Kazuhito
  • 30,746
  • 5
  • 69
  • 149
Nathan W
  • 34,706
  • 5
  • 97
  • 148

3 Answers3

4
type(item).__name__

should return 'QgsComposerLabel', but only returns 'QgsComposerItem'.

There's now a ticket in QGIS Trac.

underdark
  • 84,148
  • 21
  • 231
  • 413
0

Thanks it was helpful but item.displayText() irritated me as it's never a good idea to get object by display text rather get it by id this way you don't even need to check for class of object. just define id on print composer then dynamically change it as required using code below.

        try:
            #print item.id
            if item.id()=="build_id":
            print "found id"
            item.setText(current_gid)
        except:
            print "Fail"
Abhijit Gujar
  • 2,750
  • 3
  • 29
  • 43
-1

This is one option

    item2= composition.getComposerItemById('current_year_is')
    item2.setText(current_year)
Shruti
  • 1