├── .github └── workflows │ ├── build.yaml │ ├── documentation.yaml │ └── release.yaml ├── .gitignore ├── .gitmodules ├── LICENSE ├── Makefile ├── README.md ├── examples └── ndb-common.sh ├── ndb-cli ├── README.md ├── go.mod ├── go.sum ├── ndb-cli └── ndb_cli.go ├── qdoc ├── config │ ├── NickelDBus.qdocconf │ ├── compat.qdocconf │ ├── ndb-html-header-online.qdocconf │ └── template │ │ ├── images │ │ ├── arrow.png │ │ ├── arrow_bc.png │ │ ├── arrow_down.png │ │ ├── bg_l.png │ │ ├── bg_l_blank.png │ │ ├── bg_ll_blank.png │ │ ├── bg_r.png │ │ ├── bg_ul_blank.png │ │ ├── bgrContent.png │ │ ├── blu_dot.png │ │ ├── box_bg.png │ │ ├── breadcrumb.png │ │ ├── btn_next.png │ │ ├── btn_prev.png │ │ ├── bullet_dn.png │ │ ├── bullet_gt.png │ │ ├── bullet_sq.png │ │ ├── bullet_up.png │ │ ├── feedbackground.png │ │ ├── header_bg.png │ │ ├── home.png │ │ ├── horBar.png │ │ ├── ico_note.png │ │ ├── ico_note_attention.png │ │ ├── ico_out.png │ │ ├── logo.png │ │ ├── page.png │ │ ├── page_bg.png │ │ └── spinner.gif │ │ └── style │ │ └── online.css └── pages.qdoc ├── res └── com-github-shermp-nickeldbus.conf ├── script └── make-dbus-conf.sh └── src ├── cli ├── .gitignore ├── Makefile ├── ndb_cli.cc ├── ndb_cli.h └── qndb.cc ├── interface ├── com.github.shermp.nickeldbus.xml ├── ndb_adapter.cpp ├── ndb_adapter.h ├── ndb_proxy.cpp └── ndb_proxy.h └── ndb ├── NDBCfmDlg.cc ├── NDBCfmDlg.h ├── NDBDbus.cc ├── NDBDbus.h ├── NDBWidgets.cc ├── NDBWidgets.h ├── ndb.h ├── nickeldbus.cc ├── util.cc └── util.h /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/documentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/.github/workflows/documentation.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/README.md -------------------------------------------------------------------------------- /examples/ndb-common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/examples/ndb-common.sh -------------------------------------------------------------------------------- /ndb-cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/ndb-cli/README.md -------------------------------------------------------------------------------- /ndb-cli/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/ndb-cli/go.mod -------------------------------------------------------------------------------- /ndb-cli/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/ndb-cli/go.sum -------------------------------------------------------------------------------- /ndb-cli/ndb-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/ndb-cli/ndb-cli -------------------------------------------------------------------------------- /ndb-cli/ndb_cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/ndb-cli/ndb_cli.go -------------------------------------------------------------------------------- /qdoc/config/NickelDBus.qdocconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/qdoc/config/NickelDBus.qdocconf -------------------------------------------------------------------------------- /qdoc/config/compat.qdocconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/qdoc/config/compat.qdocconf -------------------------------------------------------------------------------- /qdoc/config/ndb-html-header-online.qdocconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/qdoc/config/ndb-html-header-online.qdocconf -------------------------------------------------------------------------------- /qdoc/config/template/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/qdoc/config/template/images/arrow.png -------------------------------------------------------------------------------- /qdoc/config/template/images/arrow_bc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/qdoc/config/template/images/arrow_bc.png -------------------------------------------------------------------------------- /qdoc/config/template/images/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/qdoc/config/template/images/arrow_down.png -------------------------------------------------------------------------------- /qdoc/config/template/images/bg_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/qdoc/config/template/images/bg_l.png -------------------------------------------------------------------------------- /qdoc/config/template/images/bg_l_blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/qdoc/config/template/images/bg_l_blank.png -------------------------------------------------------------------------------- /qdoc/config/template/images/bg_ll_blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/qdoc/config/template/images/bg_ll_blank.png -------------------------------------------------------------------------------- /qdoc/config/template/images/bg_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/qdoc/config/template/images/bg_r.png -------------------------------------------------------------------------------- /qdoc/config/template/images/bg_ul_blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/qdoc/config/template/images/bg_ul_blank.png -------------------------------------------------------------------------------- /qdoc/config/template/images/bgrContent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/qdoc/config/template/images/bgrContent.png -------------------------------------------------------------------------------- /qdoc/config/template/images/blu_dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/qdoc/config/template/images/blu_dot.png -------------------------------------------------------------------------------- /qdoc/config/template/images/box_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/qdoc/config/template/images/box_bg.png -------------------------------------------------------------------------------- /qdoc/config/template/images/breadcrumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/qdoc/config/template/images/breadcrumb.png -------------------------------------------------------------------------------- /qdoc/config/template/images/btn_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/qdoc/config/template/images/btn_next.png -------------------------------------------------------------------------------- /qdoc/config/template/images/btn_prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/qdoc/config/template/images/btn_prev.png -------------------------------------------------------------------------------- /qdoc/config/template/images/bullet_dn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/qdoc/config/template/images/bullet_dn.png -------------------------------------------------------------------------------- /qdoc/config/template/images/bullet_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/qdoc/config/template/images/bullet_gt.png -------------------------------------------------------------------------------- /qdoc/config/template/images/bullet_sq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/qdoc/config/template/images/bullet_sq.png -------------------------------------------------------------------------------- /qdoc/config/template/images/bullet_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/qdoc/config/template/images/bullet_up.png -------------------------------------------------------------------------------- /qdoc/config/template/images/feedbackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/qdoc/config/template/images/feedbackground.png -------------------------------------------------------------------------------- /qdoc/config/template/images/header_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/qdoc/config/template/images/header_bg.png -------------------------------------------------------------------------------- /qdoc/config/template/images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/qdoc/config/template/images/home.png -------------------------------------------------------------------------------- /qdoc/config/template/images/horBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/qdoc/config/template/images/horBar.png -------------------------------------------------------------------------------- /qdoc/config/template/images/ico_note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/qdoc/config/template/images/ico_note.png -------------------------------------------------------------------------------- /qdoc/config/template/images/ico_note_attention.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/qdoc/config/template/images/ico_note_attention.png -------------------------------------------------------------------------------- /qdoc/config/template/images/ico_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/qdoc/config/template/images/ico_out.png -------------------------------------------------------------------------------- /qdoc/config/template/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/qdoc/config/template/images/logo.png -------------------------------------------------------------------------------- /qdoc/config/template/images/page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/qdoc/config/template/images/page.png -------------------------------------------------------------------------------- /qdoc/config/template/images/page_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/qdoc/config/template/images/page_bg.png -------------------------------------------------------------------------------- /qdoc/config/template/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/qdoc/config/template/images/spinner.gif -------------------------------------------------------------------------------- /qdoc/config/template/style/online.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/qdoc/config/template/style/online.css -------------------------------------------------------------------------------- /qdoc/pages.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/qdoc/pages.qdoc -------------------------------------------------------------------------------- /res/com-github-shermp-nickeldbus.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/res/com-github-shermp-nickeldbus.conf -------------------------------------------------------------------------------- /script/make-dbus-conf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/script/make-dbus-conf.sh -------------------------------------------------------------------------------- /src/cli/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/src/cli/.gitignore -------------------------------------------------------------------------------- /src/cli/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/src/cli/Makefile -------------------------------------------------------------------------------- /src/cli/ndb_cli.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/src/cli/ndb_cli.cc -------------------------------------------------------------------------------- /src/cli/ndb_cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/src/cli/ndb_cli.h -------------------------------------------------------------------------------- /src/cli/qndb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/src/cli/qndb.cc -------------------------------------------------------------------------------- /src/interface/com.github.shermp.nickeldbus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/src/interface/com.github.shermp.nickeldbus.xml -------------------------------------------------------------------------------- /src/interface/ndb_adapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/src/interface/ndb_adapter.cpp -------------------------------------------------------------------------------- /src/interface/ndb_adapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/src/interface/ndb_adapter.h -------------------------------------------------------------------------------- /src/interface/ndb_proxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/src/interface/ndb_proxy.cpp -------------------------------------------------------------------------------- /src/interface/ndb_proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/src/interface/ndb_proxy.h -------------------------------------------------------------------------------- /src/ndb/NDBCfmDlg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/src/ndb/NDBCfmDlg.cc -------------------------------------------------------------------------------- /src/ndb/NDBCfmDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/src/ndb/NDBCfmDlg.h -------------------------------------------------------------------------------- /src/ndb/NDBDbus.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/src/ndb/NDBDbus.cc -------------------------------------------------------------------------------- /src/ndb/NDBDbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/src/ndb/NDBDbus.h -------------------------------------------------------------------------------- /src/ndb/NDBWidgets.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/src/ndb/NDBWidgets.cc -------------------------------------------------------------------------------- /src/ndb/NDBWidgets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/src/ndb/NDBWidgets.h -------------------------------------------------------------------------------- /src/ndb/ndb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/src/ndb/ndb.h -------------------------------------------------------------------------------- /src/ndb/nickeldbus.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/src/ndb/nickeldbus.cc -------------------------------------------------------------------------------- /src/ndb/util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/src/ndb/util.cc -------------------------------------------------------------------------------- /src/ndb/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shermp/NickelDBus/HEAD/src/ndb/util.h --------------------------------------------------------------------------------