text stringlengths 24 1.04M | metadata stringlengths 233 497 |
|---|---|
### File: qt_dotgraph/setup.py
#!/usr/bin/env python
from distutils.core import setup
from catkin_pkg.python_setup import generate_distutils_setup
d = generate_distutils_setup(
packages=['qt_dotgraph'],
package_dir={'': 'src'}
)
setup(**d)
| {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Python", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_dotgraph/setup.py", "license": "bsd-3-clause", "size": 221} |
### File: qt_dotgraph/src/qt_dotgraph/colors.py
# Copyright (c) 2011, Dirk Thomas, TU Darmstadt
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code must retain... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Python", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_dotgraph/src/qt_dotgraph/colors.py", "license": "bsd-3-clause", "size": 2061} |
### File: qt_dotgraph/src/qt_dotgraph/dot_shapes.py
from python_qt_binding.QtCore import QRectF
from python_qt_binding.QtWidgets import QAbstractGraphicsShapeItem
class QGraphicsBox3dItem(QAbstractGraphicsShapeItem):
def __init__(self, bounding_box):
super(QGraphicsBox3dItem, self).__init__()
sel... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Python", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_dotgraph/src/qt_dotgraph/dot_shapes.py", "license": "bsd-3-clause", "size": 2356} |
### File: qt_dotgraph/src/qt_dotgraph/dot_to_qt.py
# Software License Agreement (BSD License)
#
# Copyright (c) 2008, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * R... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Python", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_dotgraph/src/qt_dotgraph/dot_to_qt.py", "license": "bsd-3-clause", "size": 13546} |
### File: qt_dotgraph/src/qt_dotgraph/edge_item.py
# Copyright (c) 2011, Dirk Thomas, TU Darmstadt
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code must ret... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Python", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_dotgraph/src/qt_dotgraph/edge_item.py", "license": "bsd-3-clause", "size": 9084} |
### File: qt_dotgraph/src/qt_dotgraph/graph_item.py
# Copyright (c) 2011, Dirk Thomas, TU Darmstadt
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code must re... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Python", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_dotgraph/src/qt_dotgraph/graph_item.py", "license": "bsd-3-clause", "size": 2245} |
### File: qt_dotgraph/src/qt_dotgraph/node_item.py
# Copyright (c) 2011, Dirk Thomas, TU Darmstadt
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code must ret... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Python", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_dotgraph/src/qt_dotgraph/node_item.py", "license": "bsd-3-clause", "size": 7250} |
### File: qt_dotgraph/src/qt_dotgraph/pydotfactory.py
# Software License Agreement (BSD License)
#
# Copyright (c) 2008, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# ... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Python", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_dotgraph/src/qt_dotgraph/pydotfactory.py", "license": "bsd-3-clause", "size": 6464} |
### File: qt_dotgraph/src/qt_dotgraph/pygraphvizfactory.py
# Software License Agreement (BSD License)
#
# Copyright (c) 2008, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Python", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_dotgraph/src/qt_dotgraph/pygraphvizfactory.py", "license": "bsd-3-clause", "size": 4668} |
### File: qt_dotgraph/test/dot_to_qt_test.py
#!/usr/bin/env python
# Software License Agreement (BSD License)
#
# Copyright (c) 2009, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# a... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Python", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_dotgraph/test/dot_to_qt_test.py", "license": "bsd-3-clause", "size": 10926} |
### File: qt_dotgraph/test/pydot_factory_test.py
#!/usr/bin/env python
# Software License Agreement (BSD License)
#
# Copyright (c) 2009, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Python", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_dotgraph/test/pydot_factory_test.py", "license": "bsd-3-clause", "size": 4837} |
### File: qt_dotgraph/test/pygraphviz_factory_test.py
#!/usr/bin/env python
# Software License Agreement (BSD License)
#
# Copyright (c) 2009, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following condi... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Python", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_dotgraph/test/pygraphviz_factory_test.py", "license": "bsd-3-clause", "size": 4563} |
### File: qt_gui/CMakeLists.txt
cmake_minimum_required(VERSION 3.5)
project(qt_gui)
find_package(ament_cmake REQUIRED)
find_package(ament_cmake_python REQUIRED)
ament_python_install_package(${PROJECT_NAME}
PACKAGE_DIR src/${PROJECT_NAME})
install(DIRECTORY resource
DESTINATION share/${PROJECT_NAME})
if(BUILD_TE... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CMake", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui/CMakeLists.txt", "license": "bsd-3-clause", "size": 558} |
### File: qt_gui/src/qt_gui/about_handler.py
# Copyright (c) 2011, Dirk Thomas, Dorian Scholz, TU Darmstadt
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Python", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui/src/qt_gui/about_handler.py", "license": "bsd-3-clause", "size": 4332} |
### File: qt_gui/src/qt_gui/application_context.py
# Copyright (c) 2011, Dirk Thomas, Dorian Scholz, TU Darmstadt
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of sourc... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Python", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui/src/qt_gui/application_context.py", "license": "bsd-3-clause", "size": 2330} |
### File: qt_gui/src/qt_gui/application_dbus_interface.py
# Copyright (c) 2011, Dirk Thomas, Dorian Scholz, TU Darmstadt
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions o... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Python", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui/src/qt_gui/application_dbus_interface.py", "license": "bsd-3-clause", "size": 2289} |
### File: qt_gui/src/qt_gui/composite_plugin_provider.py
# Copyright (c) 2011, Dirk Thomas, Dorian Scholz, TU Darmstadt
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Python", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui/src/qt_gui/composite_plugin_provider.py", "license": "bsd-3-clause", "size": 3911} |
### File: qt_gui/src/qt_gui/container_manager.py
# Copyright (c) 2011, Dirk Thomas, Dorian Scholz, TU Darmstadt
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source ... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Python", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui/src/qt_gui/container_manager.py", "license": "bsd-3-clause", "size": 4465} |
### File: qt_gui/src/qt_gui/dock_widget.py
# Copyright (c) 2011, Dirk Thomas, Dorian Scholz, TU Darmstadt
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code m... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Python", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui/src/qt_gui/dock_widget.py", "license": "bsd-3-clause", "size": 14936} |
### File: qt_gui/src/qt_gui/dock_widget_container.py
# Copyright (c) 2011, Dirk Thomas, Dorian Scholz, TU Darmstadt
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of sou... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Python", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui/src/qt_gui/dock_widget_container.py", "license": "bsd-3-clause", "size": 3898} |
### File: qt_gui/src/qt_gui/dock_widget_title_bar.py
# Copyright (c) 2011, Dirk Thomas, Dorian Scholz, TU Darmstadt
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of sou... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Python", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui/src/qt_gui/dock_widget_title_bar.py", "license": "bsd-3-clause", "size": 9565} |
### File: qt_gui/src/qt_gui/dockable_main_window.py
# Software License Agreement (BSD License)
#
# Copyright (c) 2013, Open Source Robotics Foundation, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Python", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui/src/qt_gui/dockable_main_window.py", "license": "bsd-3-clause", "size": 1955} |
### File: qt_gui/src/qt_gui/errors.py
# Software License Agreement (BSD License)
#
# Copyright (c) 2013, Open Source Robotics Foundation, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
#... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Python", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui/src/qt_gui/errors.py", "license": "bsd-3-clause", "size": 1760} |
### File: qt_gui/src/qt_gui/help_provider.py
# Copyright (c) 2011, Dirk Thomas, Dorian Scholz, TU Darmstadt
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Python", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui/src/qt_gui/help_provider.py", "license": "bsd-3-clause", "size": 2521} |
### File: qt_gui/src/qt_gui/icon_loader.py
# Software License Agreement (BSD License)
#
# Copyright (c) 2013, Open Source Robotics Foundation, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Python", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui/src/qt_gui/icon_loader.py", "license": "bsd-3-clause", "size": 2443} |
### File: qt_gui/src/qt_gui/main.py
#!/usr/bin/env python
# Copyright (c) 2011, Dirk Thomas, Dorian Scholz, TU Darmstadt
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions ... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Python", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui/src/qt_gui/main.py", "license": "bsd-3-clause", "size": 32464} |
### File: qt_gui/src/qt_gui/main_window.py
# Copyright (c) 2011, Dirk Thomas, Dorian Scholz, TU Darmstadt
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code m... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Python", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui/src/qt_gui/main_window.py", "license": "bsd-3-clause", "size": 7405} |
### File: qt_gui/src/qt_gui/menu_manager.py
# Copyright (c) 2011, Dirk Thomas, Dorian Scholz, TU Darmstadt
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code ... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Python", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui/src/qt_gui/menu_manager.py", "license": "bsd-3-clause", "size": 5431} |
### File: qt_gui/src/qt_gui/minimized_dock_widgets_toolbar.py
# Copyright (c) 2011, Dirk Thomas, Dorian Scholz, TU Darmstadt
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributio... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Python", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui/src/qt_gui/minimized_dock_widgets_toolbar.py", "license": "bsd-3-clause", "size": 3950} |
### File: qt_gui/src/qt_gui/perspective_manager.py
# Copyright (c) 2011, Dirk Thomas, Dorian Scholz, TU Darmstadt
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of sourc... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Python", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui/src/qt_gui/perspective_manager.py", "license": "bsd-3-clause", "size": 20672} |
### File: qt_gui/src/qt_gui/perspective_manager_dbus_interface.py
# Copyright (c) 2011, Dirk Thomas, Dorian Scholz, TU Darmstadt
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistrib... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Python", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui/src/qt_gui/perspective_manager_dbus_interface.py", "license": "bsd-3-clause", "size": 2425} |
### File: qt_gui/src/qt_gui/plugin.py
# Copyright (c) 2011, Dirk Thomas, Dorian Scholz, TU Darmstadt
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code must r... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Python", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui/src/qt_gui/plugin.py", "license": "bsd-3-clause", "size": 3293} |
### File: qt_gui/src/qt_gui/plugin_context.py
# Copyright (c) 2011, Dirk Thomas, Dorian Scholz, TU Darmstadt
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source cod... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Python", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui/src/qt_gui/plugin_context.py", "license": "bsd-3-clause", "size": 4693} |
### File: qt_gui/src/qt_gui/plugin_descriptor.py
# Copyright (c) 2011, Dirk Thomas, Dorian Scholz, TU Darmstadt
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source ... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Python", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui/src/qt_gui/plugin_descriptor.py", "license": "bsd-3-clause", "size": 2701} |
### File: qt_gui/src/qt_gui/plugin_handler.py
# Copyright (c) 2011, Dirk Thomas, Dorian Scholz, TU Darmstadt
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source cod... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Python", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui/src/qt_gui/plugin_handler.py", "license": "bsd-3-clause", "size": 18494} |
### File: qt_gui/src/qt_gui/plugin_handler_container.py
# Copyright (c) 2011, Dirk Thomas, Dorian Scholz, TU Darmstadt
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of ... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Python", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui/src/qt_gui/plugin_handler_container.py", "license": "bsd-3-clause", "size": 4054} |
### File: qt_gui/src/qt_gui/plugin_handler_dbus_service.py
# Copyright (c) 2011, Dirk Thomas, Dorian Scholz, TU Darmstadt
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions ... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Python", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui/src/qt_gui/plugin_handler_dbus_service.py", "license": "bsd-3-clause", "size": 6911} |
### File: qt_gui/src/qt_gui/plugin_handler_direct.py
# Copyright (c) 2011, Dirk Thomas, Dorian Scholz, TU Darmstadt
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of sou... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Python", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui/src/qt_gui/plugin_handler_direct.py", "license": "bsd-3-clause", "size": 7005} |
### File: qt_gui/src/qt_gui/plugin_handler_xembed.py
# Copyright (c) 2011, Dirk Thomas, Dorian Scholz, TU Darmstadt
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of sou... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Python", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui/src/qt_gui/plugin_handler_xembed.py", "license": "bsd-3-clause", "size": 2772} |
### File: qt_gui/src/qt_gui/plugin_handler_xembed_client.py
# Copyright (c) 2011, Dirk Thomas, Dorian Scholz, TU Darmstadt
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Python", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui/src/qt_gui/plugin_handler_xembed_client.py", "license": "bsd-3-clause", "size": 11268} |
### File: qt_gui/src/qt_gui/plugin_handler_xembed_container.py
# Copyright (c) 2011, Dirk Thomas, Dorian Scholz, TU Darmstadt
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributi... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Python", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui/src/qt_gui/plugin_handler_xembed_container.py", "license": "bsd-3-clause", "size": 11992} |
### File: qt_gui/src/qt_gui/plugin_instance_id.py
# Copyright (c) 2011, Dirk Thomas, Dorian Scholz, TU Darmstadt
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Python", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui/src/qt_gui/plugin_instance_id.py", "license": "bsd-3-clause", "size": 2622} |
### File: qt_gui/src/qt_gui/plugin_manager.py
# Copyright (c) 2011, Dirk Thomas, Dorian Scholz, TU Darmstadt
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source cod... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Python", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui/src/qt_gui/plugin_manager.py", "license": "bsd-3-clause", "size": 27416} |
### File: qt_gui/src/qt_gui/plugin_manager_dbus_interface.py
# Copyright (c) 2011, Dirk Thomas, Dorian Scholz, TU Darmstadt
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistribution... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Python", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui/src/qt_gui/plugin_manager_dbus_interface.py", "license": "bsd-3-clause", "size": 3020} |
### File: qt_gui/src/qt_gui/plugin_menu.py
# Copyright (c) 2011, Dirk Thomas, Dorian Scholz, TU Darmstadt
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code m... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Python", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui/src/qt_gui/plugin_menu.py", "license": "bsd-3-clause", "size": 6284} |
### File: qt_gui/src/qt_gui/plugin_provider.py
# Copyright (c) 2011, Dirk Thomas, Dorian Scholz, TU Darmstadt
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source co... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Python", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui/src/qt_gui/plugin_provider.py", "license": "bsd-3-clause", "size": 2583} |
### File: qt_gui/src/qt_gui/recursive_plugin_provider.py
# Copyright (c) 2011, Dirk Thomas, Dorian Scholz, TU Darmstadt
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Python", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui/src/qt_gui/recursive_plugin_provider.py", "license": "bsd-3-clause", "size": 3135} |
### File: qt_gui/src/qt_gui/reload_importer.py
# Software License Agreement (BSD License)
#
# Copyright (c) 2012, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redis... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Python", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui/src/qt_gui/reload_importer.py", "license": "bsd-3-clause", "size": 3406} |
### File: qt_gui/src/qt_gui/reparent_event.py
# Copyright (c) 2011, Dirk Thomas, Dorian Scholz, TU Darmstadt
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source cod... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Python", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui/src/qt_gui/reparent_event.py", "license": "bsd-3-clause", "size": 1990} |
### File: qt_gui/src/qt_gui/ros_package_helper.py
# Copyright (c) 2011, Dirk Thomas, Dorian Scholz, TU Darmstadt
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Python", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui/src/qt_gui/ros_package_helper.py", "license": "bsd-3-clause", "size": 1812} |
### File: qt_gui/src/qt_gui/settings.py
# Copyright (c) 2011, Dirk Thomas, Dorian Scholz, TU Darmstadt
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code must... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Python", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui/src/qt_gui/settings.py", "license": "bsd-3-clause", "size": 3461} |
### File: qt_gui/src/qt_gui/settings_proxy.py
# Copyright (c) 2011, Dirk Thomas, Dorian Scholz, TU Darmstadt
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source cod... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Python", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui/src/qt_gui/settings_proxy.py", "license": "bsd-3-clause", "size": 3754} |
### File: qt_gui/src/qt_gui/settings_proxy_dbus_service.py
# Copyright (c) 2011, Dirk Thomas, Dorian Scholz, TU Darmstadt
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions ... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Python", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui/src/qt_gui/settings_proxy_dbus_service.py", "license": "bsd-3-clause", "size": 4343} |
### File: qt_gui/src/qt_gui/window_changed_signaler.py
# Software License Agreement (BSD License)
#
# Copyright (c) 2012, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# ... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Python", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui/src/qt_gui/window_changed_signaler.py", "license": "bsd-3-clause", "size": 3537} |
### File: qt_gui_app/CMakeLists.txt
cmake_minimum_required(VERSION 3.5)
project(qt_gui_app)
find_package(ament_cmake REQUIRED)
find_package(ament_cmake_python REQUIRED)
install(PROGRAMS scripts/qt_gui_app
DESTINATION lib/${PROJECT_NAME})
if(BUILD_TESTING)
find_package(ament_lint_auto REQUIRED)
# Disabling cop... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CMake", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui_app/CMakeLists.txt", "license": "bsd-3-clause", "size": 488} |
### File: qt_gui_app/scripts/qt_gui_app
#!/usr/bin/env python3
import os
import sys
from ament_index_python.resources import get_resource
from qt_gui.main import Main
_, qtgui_path = get_resource('packages', 'qt_gui')
main = Main(qtgui_path, invoked_filename=os.path.abspath(__file__))
# TODO add dummy plugin provide... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Python", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui_app/scripts/qt_gui_app", "license": "bsd-3-clause", "size": 304} |
### File: qt_gui_core/CMakeLists.txt
cmake_minimum_required(VERSION 3.5)
project(qt_gui_core)
find_package(ament_cmake REQUIRED)
ament_package()
| {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CMake", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui_core/CMakeLists.txt", "license": "bsd-3-clause", "size": 108} |
### File: qt_gui_cpp/CMakeLists.txt
cmake_minimum_required(VERSION 3.12)
project(qt_gui_cpp)
# Default to C++17
if(NOT CMAKE_CXX_STANDARD)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
endif()
find_package(ament_cmake REQUIRED)
if(WIN32)
message(STATUS "${PROJECT_NAME} is not yet supported on ... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CMake", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui_cpp/CMakeLists.txt", "license": "bsd-3-clause", "size": 2883} |
### File: qt_gui_cpp/cmake/qt_gui_cpp-extras.cmake
# Copyright (c) 2024, Open Source Robotics Foundation, Inc.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# * Redistributions of source code must retain the abov... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CMake", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui_cpp/cmake/qt_gui_cpp-extras.cmake", "license": "bsd-3-clause", "size": 1607} |
### File: qt_gui_cpp/include/qt_gui_cpp/composite_plugin_provider.h
/*
* Copyright (c) 2011, Dirk Thomas, TU Darmstadt
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistribut... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui_cpp/include/qt_gui_cpp/composite_plugin_provider.h", "license": "bsd-3-clause", "size": 2028} |
### File: qt_gui_cpp/include/qt_gui_cpp/composite_plugin_provider.hpp
/*
* Copyright (c) 2011, Dirk Thomas, TU Darmstadt
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistrib... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui_cpp/include/qt_gui_cpp/composite_plugin_provider.hpp", "license": "bsd-3-clause", "size": 2855} |
### File: qt_gui_cpp/include/qt_gui_cpp/generic_proxy.h
/*
* Copyright (c) 2011, Dirk Thomas, TU Darmstadt
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of sour... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui_cpp/include/qt_gui_cpp/generic_proxy.h", "license": "bsd-3-clause", "size": 1957} |
### File: qt_gui_cpp/include/qt_gui_cpp/generic_proxy.hpp
/*
* Copyright (c) 2011, Dirk Thomas, TU Darmstadt
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of so... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui_cpp/include/qt_gui_cpp/generic_proxy.hpp", "license": "bsd-3-clause", "size": 3069} |
### File: qt_gui_cpp/include/qt_gui_cpp/plugin.h
/*
* Copyright (c) 2011, Dirk Thomas, TU Darmstadt
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of source code... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui_cpp/include/qt_gui_cpp/plugin.h", "license": "bsd-3-clause", "size": 1915} |
### File: qt_gui_cpp/include/qt_gui_cpp/plugin.hpp
/*
* Copyright (c) 2011, Dirk Thomas, TU Darmstadt
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of source co... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui_cpp/include/qt_gui_cpp/plugin.hpp", "license": "bsd-3-clause", "size": 3424} |
### File: qt_gui_cpp/include/qt_gui_cpp/plugin_bridge.h
/*
* Copyright (c) 2011, Dirk Thomas, TU Darmstadt
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of sour... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui_cpp/include/qt_gui_cpp/plugin_bridge.h", "license": "bsd-3-clause", "size": 1957} |
### File: qt_gui_cpp/include/qt_gui_cpp/plugin_bridge.hpp
/*
* Copyright (c) 2011, Dirk Thomas, TU Darmstadt
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of so... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui_cpp/include/qt_gui_cpp/plugin_bridge.hpp", "license": "bsd-3-clause", "size": 2469} |
### File: qt_gui_cpp/include/qt_gui_cpp/plugin_context.h
/*
* Copyright (c) 2011, Dirk Thomas, TU Darmstadt
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of sou... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui_cpp/include/qt_gui_cpp/plugin_context.h", "license": "bsd-3-clause", "size": 1963} |
### File: qt_gui_cpp/include/qt_gui_cpp/plugin_context.hpp
/*
* Copyright (c) 2011, Dirk Thomas, TU Darmstadt
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of s... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui_cpp/include/qt_gui_cpp/plugin_context.hpp", "license": "bsd-3-clause", "size": 4005} |
### File: qt_gui_cpp/include/qt_gui_cpp/plugin_descriptor.h
/*
* Copyright (c) 2011, Dirk Thomas, TU Darmstadt
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of ... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui_cpp/include/qt_gui_cpp/plugin_descriptor.h", "license": "bsd-3-clause", "size": 1981} |
### File: qt_gui_cpp/include/qt_gui_cpp/plugin_descriptor.hpp
/*
* Copyright (c) 2011, Dirk Thomas, TU Darmstadt
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions o... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui_cpp/include/qt_gui_cpp/plugin_descriptor.hpp", "license": "bsd-3-clause", "size": 2838} |
### File: qt_gui_cpp/include/qt_gui_cpp/plugin_provider.h
/*
* Copyright (c) 2011, Dirk Thomas, TU Darmstadt
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of so... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui_cpp/include/qt_gui_cpp/plugin_provider.h", "license": "bsd-3-clause", "size": 1969} |
### File: qt_gui_cpp/include/qt_gui_cpp/plugin_provider.hpp
/*
* Copyright (c) 2011, Dirk Thomas, TU Darmstadt
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of ... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui_cpp/include/qt_gui_cpp/plugin_provider.hpp", "license": "bsd-3-clause", "size": 2571} |
### File: qt_gui_cpp/include/qt_gui_cpp/recursive_plugin_provider.h
/*
* Copyright (c) 2011, Dirk Thomas, TU Darmstadt
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistribut... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui_cpp/include/qt_gui_cpp/recursive_plugin_provider.h", "license": "bsd-3-clause", "size": 2029} |
### File: qt_gui_cpp/include/qt_gui_cpp/recursive_plugin_provider.hpp
/*
* Copyright (c) 2011, Dirk Thomas, TU Darmstadt
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistrib... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui_cpp/include/qt_gui_cpp/recursive_plugin_provider.hpp", "license": "bsd-3-clause", "size": 2410} |
### File: qt_gui_cpp/include/qt_gui_cpp/ros_pluginlib_plugin_provider.h
/*
* Copyright (c) 2011, Dirk Thomas, TU Darmstadt
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistr... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui_cpp/include/qt_gui_cpp/ros_pluginlib_plugin_provider.h", "license": "bsd-3-clause", "size": 2053} |
### File: qt_gui_cpp/include/qt_gui_cpp/ros_pluginlib_plugin_provider.hpp
/*
* Copyright (c) 2011, Dirk Thomas, TU Darmstadt
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redis... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui_cpp/include/qt_gui_cpp/ros_pluginlib_plugin_provider.hpp", "license": "bsd-3-clause", "size": 14597} |
### File: qt_gui_cpp/include/qt_gui_cpp/ros_pluginlib_plugin_provider_for_plugin_providers.h
/*
* Copyright (c) 2011, Dirk Thomas, TU Darmstadt
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are m... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui_cpp/include/qt_gui_cpp/ros_pluginlib_plugin_provider_for_plugin_providers.h", "license": "bsd-3-clause", "s... |
### File: qt_gui_cpp/include/qt_gui_cpp/ros_pluginlib_plugin_provider_for_plugin_providers.hpp
/*
* Copyright (c) 2011, Dirk Thomas, TU Darmstadt
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui_cpp/include/qt_gui_cpp/ros_pluginlib_plugin_provider_for_plugin_providers.hpp", "license": "bsd-3-clause"... |
### File: qt_gui_cpp/include/qt_gui_cpp/ros_pluginlib_plugin_provider_for_plugins.h
/*
* Copyright (c) 2011, Dirk Thomas, TU Darmstadt
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
*... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui_cpp/include/qt_gui_cpp/ros_pluginlib_plugin_provider_for_plugins.h", "license": "bsd-3-clause", "size": 212... |
### File: qt_gui_cpp/include/qt_gui_cpp/ros_pluginlib_plugin_provider_for_plugins.hpp
/*
* Copyright (c) 2011, Dirk Thomas, TU Darmstadt
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui_cpp/include/qt_gui_cpp/ros_pluginlib_plugin_provider_for_plugins.hpp", "license": "bsd-3-clause", "size":... |
### File: qt_gui_cpp/include/qt_gui_cpp/settings.h
/*
* Copyright (c) 2011, Dirk Thomas, TU Darmstadt
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of source co... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui_cpp/include/qt_gui_cpp/settings.h", "license": "bsd-3-clause", "size": 1927} |
### File: qt_gui_cpp/include/qt_gui_cpp/settings.hpp
/*
* Copyright (c) 2011, Dirk Thomas, TU Darmstadt
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of source ... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui_cpp/include/qt_gui_cpp/settings.hpp", "license": "bsd-3-clause", "size": 2744} |
### File: qt_gui_cpp/setup.py
#!/usr/bin/env python
from distutils.core import setup
from catkin_pkg.python_setup import generate_distutils_setup
d = generate_distutils_setup(
packages=['qt_gui_cpp'],
package_dir={'': 'src'}
)
setup(**d)
| {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Python", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui_cpp/setup.py", "license": "bsd-3-clause", "size": 220} |
### File: qt_gui_cpp/src/CMakeLists.txt
add_subdirectory(qt_gui_cpp)
set(qt_gui_cpp_BINDINGS "")
add_subdirectory(qt_gui_cpp_shiboken)
add_subdirectory(qt_gui_cpp_sip)
message(STATUS "Python binding generators: ${qt_gui_cpp_BINDINGS}")
if(NOT qt_gui_cpp_BINDINGS)
message(FATAL_ERROR "No Python binding generator fo... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CMake", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui_cpp/src/CMakeLists.txt", "license": "bsd-3-clause", "size": 295} |
### File: qt_gui_cpp/src/qt_gui_cpp/composite_plugin_provider.cpp
/*
* Copyright (c) 2011, Dirk Thomas, TU Darmstadt
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributio... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui_cpp/src/qt_gui_cpp/composite_plugin_provider.cpp", "license": "bsd-3-clause", "size": 5709} |
### File: qt_gui_cpp/src/qt_gui_cpp/cpp_binding_helper.py
# Copyright (c) 2011, Dirk Thomas, TU Darmstadt
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code m... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Python", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui_cpp/src/qt_gui_cpp/cpp_binding_helper.py", "license": "bsd-3-clause", "size": 2235} |
### File: qt_gui_cpp/src/qt_gui_cpp/cpp_plugin_provider.py
# Copyright (c) 2011, Dirk Thomas, TU Darmstadt
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code ... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Python", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui_cpp/src/qt_gui_cpp/cpp_plugin_provider.py", "license": "bsd-3-clause", "size": 2425} |
### File: qt_gui_cpp/src/qt_gui_cpp/generic_proxy.cpp
/*
* Copyright (c) 2011, Dirk Thomas, TU Darmstadt
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of source... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui_cpp/src/qt_gui_cpp/generic_proxy.cpp", "license": "bsd-3-clause", "size": 3135} |
### File: qt_gui_cpp/src/qt_gui_cpp/plugin_bridge.cpp
/*
* Copyright (c) 2011, Dirk Thomas, TU Darmstadt
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of source... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui_cpp/src/qt_gui_cpp/plugin_bridge.cpp", "license": "bsd-3-clause", "size": 3306} |
### File: qt_gui_cpp/src/qt_gui_cpp/plugin_context.cpp
/*
* Copyright (c) 2011, Dirk Thomas, TU Darmstadt
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of sourc... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui_cpp/src/qt_gui_cpp/plugin_context.cpp", "license": "bsd-3-clause", "size": 3051} |
### File: qt_gui_cpp/src/qt_gui_cpp/plugin_descriptor.cpp
/*
* Copyright (c) 2011, Dirk Thomas, TU Darmstadt
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of so... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui_cpp/src/qt_gui_cpp/plugin_descriptor.cpp", "license": "bsd-3-clause", "size": 4111} |
### File: qt_gui_cpp/src/qt_gui_cpp/plugin_provider.cpp
/*
* Copyright (c) 2011, Dirk Thomas, TU Darmstadt
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of sour... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui_cpp/src/qt_gui_cpp/plugin_provider.cpp", "license": "bsd-3-clause", "size": 2875} |
### File: qt_gui_cpp/src/qt_gui_cpp/recursive_plugin_provider.cpp
/*
* Copyright (c) 2011, Dirk Thomas, TU Darmstadt
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributio... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui_cpp/src/qt_gui_cpp/recursive_plugin_provider.cpp", "license": "bsd-3-clause", "size": 3428} |
### File: qt_gui_cpp/src/qt_gui_cpp/ros_pluginlib_plugin_provider.py
# Copyright (c) 2011, Dirk Thomas, TU Darmstadt
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of so... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Python", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui_cpp/src/qt_gui_cpp/ros_pluginlib_plugin_provider.py", "license": "bsd-3-clause", "size": 4153} |
### File: qt_gui_cpp/src/qt_gui_cpp/settings.cpp
/*
* Copyright (c) 2011, Dirk Thomas, TU Darmstadt
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of source code... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui_cpp/src/qt_gui_cpp/settings.cpp", "license": "bsd-3-clause", "size": 4170} |
### File: qt_gui_cpp/src/qt_gui_cpp_shiboken/CMakeLists.txt
find_package(Qt5Widgets REQUIRED)
set(qt_gui_cpp_shiboken_QT_COMPONENTS
QtCore
QtGui
QtWidgets
)
set(qt_gui_cpp_shiboken_SRCS
libqt_gui_cpp_shiboken/libqt_gui_cpp_shiboken_module_wrapper.cpp
libqt_gui_cpp_shiboken/qt_gui_cpp_compositepluginprovider_... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CMake", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui_cpp/src/qt_gui_cpp_shiboken/CMakeLists.txt", "license": "bsd-3-clause", "size": 3622} |
### File: qt_gui_cpp/src/qt_gui_cpp_shiboken/global.h
/*
* Copyright (c) 2011, Dirk Thomas, TU Darmstadt
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of source... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui_cpp/src/qt_gui_cpp_shiboken/global.h", "license": "bsd-3-clause", "size": 2427} |
### File: qt_gui_cpp/src/qt_gui_cpp_sip/CMakeLists.txt
set(qt_gui_cpp_HDRS_DIR ${CMAKE_CURRENT_SOURCE_DIR}/../../include/qt_gui_cpp)
set(qt_gui_cpp_sip_DEPENDENT_FILES
composite_plugin_provider.sip
generic_proxy.sip
plugin.sip
plugin_bridge.sip
plugin_context.sip
plugin_descriptor.sip
plugin_provider.sip
... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CMake", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui_cpp/src/qt_gui_cpp_sip/CMakeLists.txt", "license": "bsd-3-clause", "size": 4141} |
### File: qt_gui_py_common/CMakeLists.txt
cmake_minimum_required(VERSION 3.5)
project(qt_gui_py_common)
find_package(ament_cmake REQUIRED)
find_package(ament_cmake_python REQUIRED)
ament_python_install_package(${PROJECT_NAME}
PACKAGE_DIR src/${PROJECT_NAME})
install(DIRECTORY resource
DESTINATION share/${PROJECT... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CMake", "repo_name": "minhanghuang/qt_gui_core", "path": "qt_gui_py_common/CMakeLists.txt", "license": "bsd-3-clause", "size": 568} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.