Skip to content

Commit d987df5

Browse files
Added missing function declaration/comments
1 parent d39bc21 commit d987df5

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

vpr/src/draw/search_bar.h

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,19 @@ void search_type_changed(GtkComboBox* /*self*/, ezgl::application* app);
3131
/*function below pops up a dialog box with no button, showing the input warning message*/
3232
void warning_dialog_box(const char* message);
3333

34-
void key_length_val_changed(GtkSpinButton* self, ezgl::application* app);
35-
34+
//Returns pb ptr of given atom block name
3635
t_pb* find_atom_block_in_pb(std::string name, t_pb* pb);
3736

37+
//Highlights atom block in cluster block
3838
bool highlight_atom_block(AtomBlockId atom_blk, ClusterBlockId cl_blk, ezgl::application* app);
3939

40+
//Turns on autocomplete/suggestions
4041
void enable_autocomplete(ezgl::application* app);
4142

43+
//Simulates key press event
44+
GdkEvent simulate_keypress(char key, GdkWindow* window);
45+
46+
//Returns current search type
4247
std::string get_search_type(ezgl::application* app);
4348
#endif /* NO_GRAPHICS */
4449

0 commit comments

Comments
 (0)