@@ -203,7 +203,7 @@ def open_dataset(self):
203
203
if not self .valid_dataset (dir ):
204
204
msg = QMessageBox ()
205
205
msg .setWindowTitle ("Error" )
206
- msg .setText ("Not a valid PV Drone Inspect Dataset." )
206
+ msg .setText ("Not a valid PV Hawk Dataset." )
207
207
msg .setIcon (QMessageBox .Critical )
208
208
msg .exec ()
209
209
return
@@ -311,7 +311,7 @@ def app_mode_changed(self, app_mode):
311
311
self .ui .actionClose_String_Annotation .setEnabled (False )
312
312
313
313
if app_mode is None or app_mode == "data_visualization" :
314
- self .setWindowTitle ("PV Drone Inspect Viewer" )
314
+ self .setWindowTitle ("PV Hawk Viewer" )
315
315
316
316
317
317
@Slot (bool )
@@ -321,10 +321,10 @@ def defect_annotation_has_changes(self, has_changes):
321
321
file_name = os .path .basename (self .model .annotation_editor_model .current_file_name )
322
322
if has_changes :
323
323
self .ui .actionSave_Defect_Annotation .setEnabled (True )
324
- self .setWindowTitle ("PV Drone Inspect Viewer - {}*" .format (file_name ))
324
+ self .setWindowTitle ("PV Hawk Viewer - {}*" .format (file_name ))
325
325
else :
326
326
self .ui .actionSave_Defect_Annotation .setEnabled (False )
327
- self .setWindowTitle ("PV Drone Inspect Viewer - {}" .format (file_name ))
327
+ self .setWindowTitle ("PV Hawk Viewer - {}" .format (file_name ))
328
328
329
329
@Slot ()
330
330
def new_defect_annotation (self ):
@@ -387,17 +387,17 @@ def show_child_window(self, which):
387
387
self .child_windows [which ].show ()
388
388
389
389
def about (self ):
390
- gh1 = "LukasBommes/PV-Drone-Inspect "
391
- gh2 = "LukasBommes/PV-Drone-Inspect -Viewer"
392
- about_text = "PV Drone Inspect Viewer<br><br>" \
390
+ gh1 = "LukasBommes/PV-Hawk "
391
+ gh2 = "LukasBommes/PV-Hawk -Viewer"
392
+ about_text = "PV Hawk Viewer<br><br>" \
393
393
+ "Author: Lukas Bommes<br>" \
394
394
+ "Organization: Helmholtz Institute Erlangen-Nürnberg for Renewable Energy (HI ERN)<br>" \
395
395
+ "GitHub:<br>" \
396
- + "PV Drone Inspect : <a href='https://github.com/{gh1}'>{gh1}</a><br>" .format (gh1 = gh1 ) \
397
- + "PV Drone Inspect Viewer: <a href='https://github.com/{gh2}'>{gh2}</a><br>" .format (gh2 = gh2 )
396
+ + "PV Hawk : <a href='https://github.com/{gh1}'>{gh1}</a><br>" .format (gh1 = gh1 ) \
397
+ + "PV Hawk Viewer: <a href='https://github.com/{gh2}'>{gh2}</a><br>" .format (gh2 = gh2 )
398
398
QMessageBox .about (
399
399
self ,
400
- "About PV Drone Inspect Viewer" ,
400
+ "About PV Hawk Viewer" ,
401
401
about_text
402
402
)
403
403
0 commit comments