10.6.16. Class cerebro.events.BeforeEventChangingOfTasksHashtags

class cerebro.events.BeforeEventChangingOfTasksHashtags(event_type, event_id)[source]

Bases: cerebro.events.BeforeEventChangingOfTasks

The class for the tasks hashtags changing event. It grants access to the task hashtags being changed before writing them into the database.

Methods

The class object is input into the functions before_event and error_event (in case of error) of the module event.

def before_event(event):        
        if event.event_type() == event.EVENT_CHANGING_OF_TASKS_HASHTAGS:
                ...
is_added()[source]
Returns:True, if hashtags are being added to task(s). False, is being removed.
Return type:bool
def before_event(event):        
        if event.event_type() == event.EVENT_CHANGING_OF_TASKS_HASHTAGS: # hashtags is being changed
        
                if event.is_added() == False: # hashtags are being dismissed                                    
                        # asking the user if he/she is sure to do it
                        q = 'Are you sure you want to remove hashtags from the task?'
                        if cerebro.gui.question_box('User list change',  q) == False: # if the user is not sure
                                raise Exception('') 
                        # Hashtags will remain added to the task