id
int64
0
755k
file_name
stringlengths
3
109
file_path
stringlengths
13
185
content
stringlengths
31
9.38M
size
int64
31
9.38M
language
stringclasses
1 value
extension
stringclasses
11 values
total_lines
int64
1
340k
avg_line_length
float64
2.18
149k
max_line_length
int64
7
2.22M
alphanum_fraction
float64
0
1
repo_name
stringlengths
6
65
repo_stars
int64
100
47.3k
repo_forks
int64
0
12k
repo_open_issues
int64
0
3.4k
repo_license
stringclasses
9 values
repo_extraction_date
stringclasses
92 values
exact_duplicates_redpajama
bool
2 classes
near_duplicates_redpajama
bool
2 classes
exact_duplicates_githubcode
bool
2 classes
exact_duplicates_stackv2
bool
1 class
exact_duplicates_stackv1
bool
2 classes
near_duplicates_githubcode
bool
2 classes
near_duplicates_stackv1
bool
2 classes
near_duplicates_stackv2
bool
1 class
15,155
ConnectionSettings.h
Studio3T_robomongo/src/robomongo/core/settings/ConnectionSettings.h
#pragma once #include <QString> #include <QVariant> #include <QVariantMap> #include <mongo/client/dbclient_base.h> #include <mongo/client/mongo_uri.h> #include <mongo/util/net/hostandport.h> namespace Robomongo { class CredentialSettings; class SshSettings; class SslSettings; class ReplicaSetSettings...
5,808
C++
.h
149
30.020134
107
0.62404
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,156
SettingsManager.h
Studio3T_robomongo/src/robomongo/core/settings/SettingsManager.h
#pragma once #include <QString> #include <QVariantMap> #include <QSet> #include <QDir> #include <vector> #include <cstdlib> #include "robomongo/core/Enums.h" namespace Robomongo { class ConnectionSettings; struct ConfigFileAndImportFunction; // Current cache directory auto const CacheDir = ...
9,513
C++
.h
199
38.150754
103
0.648666
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,157
ReplicaSetSettings.h
Studio3T_robomongo/src/robomongo/core/settings/ReplicaSetSettings.h
#pragma once #include <QString> #include <QVariant> #include <QVariantMap> #include <mongo/util/net/hostandport.h> #include <mongo/client/mongo_uri.h> namespace Robomongo { class ReplicaSetSettings { public: enum class ReadPreference { PRIMARY = 0, PRIM...
2,115
C++
.h
53
31.641509
99
0.646335
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,158
ScriptEngine.h
Studio3T_robomongo/src/robomongo/core/engine/ScriptEngine.h
#pragma once #include <QObject> #include <QMutex> #include <mongo/scripting/engine.h> //#include <third_party/js-1.7/jsparse.h> #include "robomongo/core/domain/MongoShellResult.h" #include "robomongo/core/Enums.h" namespace Robomongo { class ConnectionSettings; class ScriptEngine : public QObject { ...
2,084
C++
.h
46
36.130435
106
0.653979
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,159
private.h
Studio3T_robomongo/src/robomongo/ssh/private.h
#ifndef ROBOMONGO_SSH_PRIVATE_H #define ROBOMONGO_SSH_PRIVATE_H #ifdef __cplusplus extern "C" { #endif // We do not need to use IPv6 for local bind. But we do support IPv6 for remote connection. // It means we can ignore MSVC warning: "Use inet_ntop() or InetNtop() instead" of "inet_ntoa" #define _WINSOCK_DEPRECATED_...
3,444
C++
.h
76
42.684211
138
0.586248
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,160
ssh.h
Studio3T_robomongo/src/robomongo/ssh/ssh.h
#ifndef ROBOMONGO_SSH_H #define ROBOMONGO_SSH_H #ifdef __cplusplus extern "C" { #endif enum rbm_ssh_log_type { RBM_SSH_LOG_TYPE_ERROR = 1, RBM_SSH_LOG_TYPE_WARN = 2, RBM_SSH_LOG_TYPE_INFO = 3, RBM_SSH_LOG_TYPE_DEBUG = 100 // log as much as possible }; enum rbm_ssh_auth_type { RBM_SSH_AUTH_T...
1,785
C++
.h
56
28.428571
85
0.696616
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,161
internal.h
Studio3T_robomongo/src/robomongo/ssh/temp/internal.h
#include "robomongo/ssh/ssh.h" #include <stdarg.h> int log_error(const char *format, ...); int log_msg(const char *format, ...); void ssh_log_v(rbm_ssh_session* session, enum rbm_ssh_log_type type, const char *format, va_list args, int errsave); void ssh_log_msg(rbm_ssh_session* session, const char *format, ...); vo...
530
C++
.h
9
57.555556
116
0.716216
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,162
temp_ssh.h
Studio3T_robomongo/src/robomongo/ssh/temp/temp_ssh.h
#ifndef ROBOMONGO_SSH_H #define ROBOMONGO_SSH_H #include <libssh2.h> #ifdef __cplusplus extern "C" { #endif #ifdef _WIN32 # define rbm_socket_t SOCKET # define rbm_socket_invalid INVALID_SOCKET #else # define rbm_socket_t int # define rbm_socket_invalid (-1) #endif enum rbm_ssh_log_type { RBM_SSH_LOG_TYPE_E...
2,358
C++
.h
77
27.233766
83
0.708278
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,164
common.h
Studio3T_robomongo/src/robomongo/utils/common.h
#pragma once // todo: rename to utils.h #include <string> #include <QObject> namespace Robomongo /* todo ::utils */ { class Event; class EventBus; // Special handler designed to be used in MongoDatanase and MongoServer classes and only for // event->isError() is true case. void genericEventErro...
678
C++
.h
18
33.611111
97
0.729358
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,165
StringOperations.h
Studio3T_robomongo/src/robomongo/utils/StringOperations.h
#pragma once #include <string> namespace Robomongo { // Capitalize first char (Mongo errors often come all lower case) std::string captilizeFirstChar(std::string str); }
180
C++
.h
7
23.285714
69
0.766082
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,166
RoboCrypt.h
Studio3T_robomongo/src/robomongo/utils/RoboCrypt.h
#include "SimpleCrypt.h" #include <string> #include <mongo/logger/log_severity.h> namespace Robomongo { class RoboCrypt { using LogAndSeverity = std::pair<std::string, mongo::logger::LogSeverity>; public: static SimpleCrypt& simpleCrypter() { static SimpleCrypt simpleCry...
1,060
C++
.h
27
30.925926
104
0.657843
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,167
qtgui-config_p.h
Studio3T_robomongo/src/robomongo/utils/qzip/qtgui-config_p.h
#define QT_FEATURE_xcb -1 #define QT_FEATURE_accessibility_atspi_bridge -1 #define QT_FEATURE_angle_d3d11_qdtd 1 #define QT_FEATURE_direct2d 1 #define QT_FEATURE_directfb -1 #define QT_FEATURE_directwrite 1 #define QT_FEATURE_directwrite2 1 #define QT_FEATURE_egl 1 #define QT_FEATURE_egl_x11 -1 #define QT_FEATURE_eglfs...
1,334
C++
.h
42
30.761905
48
0.798762
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,168
qconfig_p.h
Studio3T_robomongo/src/robomongo/utils/qzip/qconfig_p.h
#define QT_FEATURE_alloca_h -1 #define QT_FEATURE_alloca_malloc_h 1 #define QT_FEATURE_alloca 1 #define QT_FEATURE_android_style_assets -1 #define QT_FEATURE_sse2 1 #define QT_FEATURE_private_tests -1 #define QT_FEATURE_dbus 1 #define QT_FEATURE_dbus_linked -1 #define QT_FEATURE_gui 1 #define QT_FEATURE_libudev -1 #def...
715
C++
.h
22
31.5
44
0.803752
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,169
qtguiglobal_p.h
Studio3T_robomongo/src/robomongo/utils/qzip/qtguiglobal_p.h
/**************************************************************************** ** ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of the QtGui module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage ** Licensees holding valid commerci...
2,324
C++
.h
54
41.962963
77
0.707855
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,171
qtcore-config_p.h
Studio3T_robomongo/src/robomongo/utils/qzip/qtcore-config_p.h
#define QT_FEATURE_clock_gettime -1 #define QT_FEATURE_datetimeparser 1 #define QT_FEATURE_dlopen -1 #define QT_FEATURE_doubleconversion 1 #define QT_FEATURE_glib -1 #define QT_FEATURE_gnu_libiconv -1 #define QT_FEATURE_icu -1 #define QT_FEATURE_posix_libiconv -1 #define QT_FEATURE_iconv -1 #define QT_FEATURE_inotify -...
522
C++
.h
16
31.625
45
0.804348
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,172
qglobal_p.h
Studio3T_robomongo/src/robomongo/utils/qzip/qglobal_p.h
/**************************************************************************** ** ** Copyright (C) 2015 Intel Corporation. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of the QtCore module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage ** Licensees holding valid commerci...
2,412
C++
.h
57
41.210526
77
0.707535
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,174
ptimeutil.h
Studio3T_robomongo/src/robomongo/shell/db/ptimeutil.h
/* wdb - weather and water data storage Copyright (C) 2007 met.no Contact information: Norwegian Meteorological Institute Box 43 Blindern 0313 OSLO NORWAY E-mail: wdb@met.no This program is free software; you can redistribute it and/or modify it under the terms of the GNU Gene...
4,108
C++
.h
108
32.666667
117
0.68091
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,175
MainWindow.h
Studio3T_robomongo/src/robomongo/gui/MainWindow.h
#pragma once #include <QMainWindow> #include <QSystemTrayIcon> QT_BEGIN_NAMESPACE class QLabel; class QToolBar; class QDockWidget; class QToolButton; class QPushButton; class QTreeWidgetItem; class QNetworkReply; class QNetworkAccessManager; QT_END_NAMESPACE namespace Robomongo { class ConnectionFailedEvent; ...
4,639
C++
.h
139
25.618705
69
0.676688
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,176
GuiRegistry.h
Studio3T_robomongo/src/robomongo/gui/GuiRegistry.h
#pragma once #include <QIcon> #include <QBrush> #include <QAbstractItemView> namespace Robomongo { /** * @brief GuiRegistry is a simple registry-like singleton, that provides access to * to another various singletons (including access to the data that is stored in * resources (i.e. gu...
3,683
C++
.h
98
29.438776
91
0.636211
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,177
AppStyle.h
Studio3T_robomongo/src/robomongo/gui/AppStyle.h
#pragma once #include <QStyle> #include <QProxyStyle> namespace Robomongo { namespace AppStyleUtils { void initStyle(); void applyStyle(const QString &styleName); QStringList getSupportedStyles(); } class AppStyle : public QProxyStyle { Q_OBJECT public: ...
761
C++
.h
21
30.666667
137
0.720109
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,178
CreateDatabaseDialog.h
Studio3T_robomongo/src/robomongo/gui/dialogs/CreateDatabaseDialog.h
#pragma once #include <QDialog> QT_BEGIN_NAMESPACE class QLabel; class QDialogButtonBox; class QLineEdit; QT_END_NAMESPACE namespace Robomongo { class Indicator; class CreateDatabaseDialog : public QDialog { Q_OBJECT public: explicit CreateDatabaseDialog(const QString &serverName, ...
1,073
C++
.h
33
24.787879
98
0.656673
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,179
CreateUserDialog.h
Studio3T_robomongo/src/robomongo/gui/dialogs/CreateUserDialog.h
#pragma once #include <QDialog> QT_BEGIN_NAMESPACE class QTextEdit; class QLabel; class QCheckBox; class QLineEdit; class QComboBox; QT_END_NAMESPACE #include "robomongo/core/domain/MongoUser.h" namespace Robomongo { class CreateUserDialog : public QDialog { Q_OBJECT public: static const...
1,259
C++
.h
42
22.261905
81
0.640133
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,180
PreferencesDialog.h
Studio3T_robomongo/src/robomongo/gui/dialogs/PreferencesDialog.h
#pragma once #include <QDialog> QT_BEGIN_NAMESPACE class QComboBox; class QCheckBox; QT_END_NAMESPACE namespace Robomongo { class PreferencesDialog : public QDialog { Q_OBJECT public: typedef QDialog BaseClass; explicit PreferencesDialog(QWidget *parent); enum { height = ...
717
C++
.h
28
20.071429
55
0.690962
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,181
ConnectionAdvancedTab.h
Studio3T_robomongo/src/robomongo/gui/dialogs/ConnectionAdvancedTab.h
#pragma once #include <QWidget> QT_BEGIN_NAMESPACE class QLineEdit; class QCheckBox; class QPushButton; QT_END_NAMESPACE namespace Robomongo { class ConnectionSettings; class ConnectionAdvancedTab : public QWidget { Q_OBJECT public: ConnectionAdvancedTab(ConnectionSettings *settings...
940
C++
.h
33
22.727273
72
0.700445
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,182
ConnectionAuthTab.h
Studio3T_robomongo/src/robomongo/gui/dialogs/ConnectionAuthTab.h
#pragma once #include <QWidget> #include "robomongo/gui/utils/GuiConstants.h" QT_BEGIN_NAMESPACE class QLineEdit; class QLabel; class QCheckBox; class QPushButton; class QComboBox; QT_END_NAMESPACE namespace Robomongo { class ConnectionSettings; class ConnectionAuthTab : public QWidget { Q_OBJE...
1,414
C++
.h
49
21.816327
56
0.660029
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,183
ExportDialog.h
Studio3T_robomongo/src/robomongo/gui/dialogs/ExportDialog.h
#pragma once #include <QDialog> #include <QProcess> QT_BEGIN_NAMESPACE class QLabel; class QDialogButtonBox; class QLineEdit; class QTreeWidgetItem; class QTreeWidget; class QComboBox; class QPushButton; class QGroupBox; class QTextEdit; class QProcess; QT_END_NAMESPACE namespace Robomongo { class Indicator; ...
3,479
C++
.h
93
30.569892
99
0.667358
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,184
ConnectionsDialog.h
Studio3T_robomongo/src/robomongo/gui/dialogs/ConnectionsDialog.h
#pragma once #include <QDialog> #include <QTreeWidget> #include "robomongo/core/Core.h" namespace Robomongo { class ConnectionListWidgetItem; class SettingsManager; class ConnectionSettings; /** * @brief Dialog allows select/edit/add/delete connections */ class ConnectionsDialog : publ...
3,098
C++
.h
102
22.343137
96
0.605857
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,185
ConnectionDialog.h
Studio3T_robomongo/src/robomongo/gui/dialogs/ConnectionDialog.h
#pragma once #include <QDialog> #include "robomongo/core/Core.h" #include "robomongo/gui/utils/GuiConstants.h" namespace Robomongo { class ConnectionSettings; class ConnectionAuthTab; class ConnectionBasicTab; class ConnectionAdvancedTab; class SSLTab; class SshTunnelTab; /** * @bri...
2,183
C++
.h
71
22.140845
84
0.62089
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,186
SSHTunnelTab.h
Studio3T_robomongo/src/robomongo/gui/dialogs/SSHTunnelTab.h
#pragma once #include <QWidget> #include "robomongo/core/settings/ConnectionSettings.h" QT_BEGIN_NAMESPACE class QLabel; class QLineEdit; class QCheckBox; class QPushButton; class QComboBox; class QFrame; QT_END_NAMESPACE namespace Robomongo { class ConnectionSettings; class SshTunnelTab : public QWidget ...
1,563
C++
.h
52
23.403846
57
0.695594
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,187
EulaDialog.h
Studio3T_robomongo/src/robomongo/gui/dialogs/EulaDialog.h
#pragma once #include <QWizard> QT_BEGIN_NAMESPACE class QLabel; class QLineEdit; class QCheckBox; class QPushButton; class QDialogButtonBox; class QComboBox; class QNetworkReply; QT_END_NAMESPACE namespace Robomongo { class EulaDialog : public QWizard { Q_OBJECT public: static const QS...
1,412
C++
.h
51
21.039216
74
0.653702
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,188
FunctionTextEditor.h
Studio3T_robomongo/src/robomongo/gui/dialogs/FunctionTextEditor.h
#pragma once #include <QDialog> QT_BEGIN_NAMESPACE class QLineEdit; class QLabel; QT_END_NAMESPACE #include "robomongo/core/domain/MongoFunction.h" namespace Robomongo { class FindFrame; class FunctionTextEditor : public QDialog { Q_OBJECT public: typedef QDialog BaseClass; ...
847
C++
.h
29
22.62069
84
0.669554
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,189
CreateCollectionDialog.h
Studio3T_robomongo/src/robomongo/gui/dialogs/CreateCollectionDialog.h
#pragma once #include <mongo/bson/bsonobj.h> #include <QDialog> QT_BEGIN_NAMESPACE class QLabel; class QDialogButtonBox; class QLineEdit; class QTabWidget; class QCheckBox; class QComboBox; QT_END_NAMESPACE class QsciScintilla; namespace Robomongo { class FindFrame; class Indicator; /** * @brief Thi...
9,313
C++
.h
264
26.537879
124
0.616131
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,190
DocumentTextEditor.h
Studio3T_robomongo/src/robomongo/gui/dialogs/DocumentTextEditor.h
#pragma once #include <QDialog> #include <mongo/bson/bsonobj.h> #include "robomongo/core/domain/MongoQueryInfo.h" namespace Robomongo { class FindFrame; class DocumentTextEditor : public QDialog { Q_OBJECT public: typedef std::vector<mongo::BSONObj> ReturnType; static const Q...
1,564
C++
.h
48
25.125
129
0.646
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,191
ConnectionDiagnosticDialog.h
Studio3T_robomongo/src/robomongo/gui/dialogs/ConnectionDiagnosticDialog.h
#pragma once #include <QDialog> #include <QIcon> class QLabel; class QMovie; namespace Robomongo { struct ConnectionEstablishedEvent; class ConnectionFailedEvent; class ConnectionSettings; class MongoServer; class ConnectionDiagnosticDialog : public QDialog { Q_OBJECT public: ...
1,696
C++
.h
57
22.035088
88
0.651692
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,192
SSLTab.h
Studio3T_robomongo/src/robomongo/gui/dialogs/SSLTab.h
#pragma once #include <QWidget> #include "robomongo/core/settings/ConnectionSettings.h" QT_BEGIN_NAMESPACE class QLabel; class QLineEdit; class QCheckBox; class QPushButton; class QRadioButton; class QComboBox; QT_END_NAMESPACE namespace Robomongo { class ConnectionSettings; class SSLTab : public QWidget ...
4,547
C++
.h
133
25.496241
93
0.629869
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,193
ConnectionBasicTab.h
Studio3T_robomongo/src/robomongo/gui/dialogs/ConnectionBasicTab.h
#pragma once #include <QWidget> QT_BEGIN_NAMESPACE class QLineEdit; class QLabel; class QCheckBox; class QPushButton; class QComboBox; class QTreeWidget; class QTreeWidgetItem; class QDialogButtonBox; QT_END_NAMESPACE namespace Robomongo { class ConnectionSettings; class ConnectionDialog; class Connectio...
1,648
C++
.h
57
22.45614
93
0.682449
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,194
CopyCollectionDialog.h
Studio3T_robomongo/src/robomongo/gui/dialogs/CopyCollectionDialog.h
#pragma once #include <QDialog> #include "robomongo/core/domain/App.h" QT_BEGIN_NAMESPACE class QDialogButtonBox; class QComboBox; QT_END_NAMESPACE namespace Robomongo { class MongoDatabase; class CopyCollection : public QDialog { Q_OBJECT public: static const QSize minimumSize; ...
929
C++
.h
31
22.322581
86
0.652466
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,196
LogWidget.h
Studio3T_robomongo/src/robomongo/gui/widgets/LogWidget.h
#pragma once #include <QWidget> #include <mongo/logger/log_severity.h> QT_BEGIN_NAMESPACE class QTextEdit; class QAction; QT_END_NAMESPACE namespace Robomongo { class LogWidget : public QWidget { Q_OBJECT public: typedef QWidget BaseClass; LogWidget(QWidget* parent = 0); ...
590
C++
.h
24
19.083333
82
0.672043
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,197
ExplorerCollectionTreeItem.h
Studio3T_robomongo/src/robomongo/gui/widgets/explorer/ExplorerCollectionTreeItem.h
#pragma once #include "robomongo/core/Event.h" #include "robomongo/gui/widgets/explorer/ExplorerTreeItem.h" #include "robomongo/gui/widgets/explorer/ExplorerCollectionIndexesDir.h" #include "robomongo/core/domain/CursorPosition.h" #include "robomongo/core/events/MongoEventsInfo.h" #include "robomongo/core/domain/Mongo...
2,385
C++
.h
58
34.344828
133
0.729741
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,198
AddEditIndexDialog.h
Studio3T_robomongo/src/robomongo/gui/widgets/explorer/AddEditIndexDialog.h
#pragma once #include <QDialog> QT_BEGIN_NAMESPACE class QLineEdit; class QCheckBox; class QTextEdit; QT_END_NAMESPACE #include "robomongo/core/events/MongoEventsInfo.h" namespace Robomongo { class FindFrame; class AddEditIndexDialog: public QDialog { Q_OBJECT public: typedef QDialog Ba...
1,297
C++
.h
46
21.434783
64
0.666667
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,199
ExplorerDatabaseCategoryTreeItem.h
Studio3T_robomongo/src/robomongo/gui/widgets/explorer/ExplorerDatabaseCategoryTreeItem.h
#pragma once #include "robomongo/gui/widgets/explorer/ExplorerTreeItem.h" namespace Robomongo { class ExplorerDatabaseTreeItem; enum ExplorerDatabaseCategory { Collections, Functions, Files, Users }; /* ** Database category Tree Item (looks like folder in the ...
1,079
C++
.h
37
22.378378
116
0.678571
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,200
ExplorerUserTreeItem.h
Studio3T_robomongo/src/robomongo/gui/widgets/explorer/ExplorerUserTreeItem.h
#pragma once #include "robomongo/core/domain/MongoUser.h" #include "robomongo/gui/widgets/explorer/ExplorerTreeItem.h" namespace Robomongo { class MongoDatabase; class ExplorerUserTreeItem : public ExplorerTreeItem { Q_OBJECT public: typedef ExplorerTreeItem BaseClass; Explore...
580
C++
.h
20
23.5
108
0.714801
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,201
ExplorerCollectionIndexItem.h
Studio3T_robomongo/src/robomongo/gui/widgets/explorer/ExplorerCollectionIndexItem.h
#pragma once #include "robomongo/core/events/MongoEventsInfo.h" #include "robomongo/gui/widgets/explorer/ExplorerTreeItem.h" namespace Robomongo { class ExplorerCollectionIndexesDir; class ExplorerCollectionIndexItem : public ExplorerTreeItem { Q_OBJECT public: using BaseClass = Expl...
577
C++
.h
20
23.2
73
0.717391
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,202
ExplorerReplicaSetFolderItem.h
Studio3T_robomongo/src/robomongo/gui/widgets/explorer/ExplorerReplicaSetFolderItem.h
#pragma once #include "robomongo/gui/widgets/explorer/ExplorerTreeItem.h" namespace Robomongo { class MongoServer; struct ReplicaSetFolderLoading; class ExplorerReplicaSetFolderItem : public ExplorerTreeItem { Q_OBJECT public: using BaseClass = ExplorerTreeItem; Explorer...
852
C++
.h
26
26.192308
88
0.692778
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,203
ExplorerDatabaseTreeItem.h
Studio3T_robomongo/src/robomongo/gui/widgets/explorer/ExplorerDatabaseTreeItem.h
#pragma once #include "robomongo/gui/widgets/explorer/ExplorerTreeItem.h" namespace Robomongo { namespace detail { QString buildName(const QString& text, int count); } class ExplorerCollectionTreeItem; class ExplorerDatabaseCategoryTreeItem; class EventBus; class MongoDatabaseColl...
2,711
C++
.h
65
34.338462
107
0.740038
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,204
ExplorerWidget.h
Studio3T_robomongo/src/robomongo/gui/widgets/explorer/ExplorerWidget.h
#pragma once #include <QWidget> QT_BEGIN_NAMESPACE class QTreeWidget; class QTreeWidgetItem; class QLabel; QT_END_NAMESPACE #include "robomongo/core/events/MongoEvents.h" namespace Robomongo { class MainWindow; /** * @brief Explorer widget (usually you'll see it at the left of main window) */ ...
1,169
C++
.h
40
23.25
80
0.692583
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,205
ExplorerReplicaSetTreeItem.h
Studio3T_robomongo/src/robomongo/gui/widgets/explorer/ExplorerReplicaSetTreeItem.h
#pragma once #include "robomongo/core/events/MongoEvents.h" #include "robomongo/gui/widgets/explorer/ExplorerTreeItem.h" namespace Robomongo { class EventBus; class MongoServerLoadingDatabasesEvent; class ExplorerReplicaSetTreeItem : public ExplorerTreeItem { Q_OBJECT public: usi...
1,733
C++
.h
43
32.093023
134
0.661281
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,206
ExplorerTreeWidget.h
Studio3T_robomongo/src/robomongo/gui/widgets/explorer/ExplorerTreeWidget.h
#pragma once #include <QTreeWidget> namespace Robomongo { class ExplorerTreeWidget : public QTreeWidget { Q_OBJECT public: explicit ExplorerTreeWidget(QWidget *parent = 0); protected: virtual void contextMenuEvent(QContextMenuEvent *event); }; }
292
C++
.h
13
17.923077
64
0.711191
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,207
ExplorerTreeItem.h
Studio3T_robomongo/src/robomongo/gui/widgets/explorer/ExplorerTreeItem.h
#pragma once #include <QTreeWidgetItem> QT_BEGIN_NAMESPACE class QMenu; QT_END_NAMESPACE namespace Robomongo { class ExplorerTreeItem :public QObject, public QTreeWidgetItem { Q_OBJECT public: typedef QTreeWidgetItem BaseClass; explicit ExplorerTreeItem(QTreeWidget *view); ...
564
C++
.h
21
21.714286
66
0.724074
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,208
ExplorerServerTreeItem.h
Studio3T_robomongo/src/robomongo/gui/widgets/explorer/ExplorerServerTreeItem.h
#pragma once #include "robomongo/core/events/MongoEvents.h" #include "robomongo/gui/widgets/explorer/ExplorerTreeItem.h" namespace Robomongo { class EventBus; class MongoServerLoadingDatabasesEvent; class ExplorerReplicaSetFolderItem; class ExplorerTreeItem; class ExplorerServerTreeItem : public ...
2,951
C++
.h
69
34.681159
104
0.675402
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,209
ExplorerFunctionTreeItem.h
Studio3T_robomongo/src/robomongo/gui/widgets/explorer/ExplorerFunctionTreeItem.h
#pragma once #include "robomongo/core/domain/MongoFunction.h" #include "robomongo/gui/widgets/explorer/ExplorerTreeItem.h" namespace Robomongo { class MongoDatabase; class ExplorerFunctionTreeItem :public ExplorerTreeItem { Q_OBJECT public: typedef ExplorerTreeItem BaseClass; ...
796
C++
.h
23
28.304348
114
0.714472
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,210
ExplorerCollectionIndexesDir.h
Studio3T_robomongo/src/robomongo/gui/widgets/explorer/ExplorerCollectionIndexesDir.h
#pragma once #include "robomongo/gui/widgets/explorer/ExplorerTreeItem.h" namespace Robomongo { class ExplorerCollectionIndexesDir : public ExplorerTreeItem { Q_OBJECT public: using BaseClass = ExplorerTreeItem; static const QString labelText; explicit ExplorerCollectionInd...
524
C++
.h
19
21.578947
71
0.685259
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,211
JsonPrepareThread.h
Studio3T_robomongo/src/robomongo/gui/widgets/workarea/JsonPrepareThread.h
#pragma once #include <QThread> #include <vector> #include "robomongo/core/Core.h" #include "robomongo/core/Enums.h" namespace Robomongo { /* ** In this thread we are running task to prepare JSON string from list of BSON objects */ class JsonPrepareThread : public QThread { Q_OBJECT ...
1,091
C++
.h
43
18.534884
128
0.602885
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,213
CollectionStatsTreeItem.h
Studio3T_robomongo/src/robomongo/gui/widgets/workarea/CollectionStatsTreeItem.h
#pragma once #include <QTreeWidgetItem> #include "robomongo/core/Core.h" namespace Robomongo { class CollectionStatsTreeItem : public QTreeWidgetItem { public: CollectionStatsTreeItem(MongoDocumentPtr document); }; }
242
C++
.h
11
18.727273
59
0.769565
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,214
BsonTreeView.h
Studio3T_robomongo/src/robomongo/gui/widgets/workarea/BsonTreeView.h
#pragma once #include <QTreeView> #include "robomongo/core/domain/Notifier.h" #include "robomongo/gui/widgets/workarea/OutputItemContentWidget.h" namespace Robomongo { class InsertDocumentResponse; class BsonTreeView : public QTreeView, public INotifierObserver { Q_OBJECT public: ty...
1,129
C++
.h
31
29.483871
97
0.723464
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,215
WelcomeTab.h
Studio3T_robomongo/src/robomongo/gui/widgets/workarea/WelcomeTab.h
#pragma once #ifndef __linux__ // ---------------------- Windows, macOS impl. --------------------------// #include <QWidget> #include <QWebEnginePage> QT_BEGIN_NAMESPACE class QScrollArea; QT_END_NAMESPACE namespace Robomongo { // ------------------ WelcomeTab class WelcomeTab : public QWidget { ...
2,409
C++
.h
79
24.810127
95
0.603202
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,216
BsonTableView.h
Studio3T_robomongo/src/robomongo/gui/widgets/workarea/BsonTableView.h
#pragma once #include <QTableView> #include "robomongo/core/domain/Notifier.h" namespace Robomongo { class BsonTableView : public QTableView , public INotifierObserver { Q_OBJECT public: typedef QTableView BaseClass; explicit BsonTableView(MongoShell *shell, const MongoQueryInfo &q...
658
C++
.h
21
25.47619
109
0.710443
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,217
OutputItemHeaderWidget.h
Studio3T_robomongo/src/robomongo/gui/widgets/workarea/OutputItemHeaderWidget.h
#pragma once #include <QWidget> QT_BEGIN_NAMESPACE class QPushButton; QT_END_NAMESPACE #include "robomongo/gui/editors/PlainJavaScriptEditor.h" #include "robomongo/core/domain/MongoShellResult.h" #include "robomongo/gui/widgets/workarea/PagingWidget.h" namespace Robomongo { class OutputItemContentWidget; cla...
1,779
C++
.h
53
26.188679
105
0.68105
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,218
PagingWidget.h
Studio3T_robomongo/src/robomongo/gui/widgets/workarea/PagingWidget.h
#pragma once #include <QWidget> QT_BEGIN_NAMESPACE class QLineEdit; QT_END_NAMESPACE namespace Robomongo { class PagingWidget : public QWidget { Q_OBJECT public: typedef QWidget BaseClass; enum {pageLimit = 50}; PagingWidget(QWidget *parent = NULL); void setSkip(in...
728
C++
.h
29
19.068966
47
0.646465
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,219
CollectionStatsTreeWidget.h
Studio3T_robomongo/src/robomongo/gui/widgets/workarea/CollectionStatsTreeWidget.h
#pragma once #include <QTreeWidget> #include "robomongo/core/Core.h" namespace Robomongo { class CollectionStatsTreeWidget : public QTreeWidget { Q_OBJECT public: CollectionStatsTreeWidget(const std::vector<MongoDocumentPtr> &documents, QWidget *parent = NULL); }; }
302
C++
.h
12
21.25
106
0.738676
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,220
BsonTableModel.h
Studio3T_robomongo/src/robomongo/gui/widgets/workarea/BsonTableModel.h
#pragma once #include <vector> #include <QAbstractProxyModel> namespace Robomongo { class BsonTreeItem; class BsonTableModelProxy : public QAbstractProxyModel { Q_OBJECT public: typedef QAbstractProxyModel BaseClass; typedef std::vector<QString> ColumnsValuesType; ex...
1,368
C++
.h
31
37.193548
104
0.717081
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,221
ScriptWidget.h
Studio3T_robomongo/src/robomongo/gui/widgets/workarea/ScriptWidget.h
#pragma once #include <QFrame> QT_BEGIN_NAMESPACE class QLabel; class QCompleter; QT_END_NAMESPACE #include "robomongo/core/domain/MongoShellResult.h" #include "robomongo/core/domain/CursorPosition.h" namespace Robomongo { class FindFrame; class TopStatusBar; class MongoShell; class Indicator; cl...
4,404
C++
.h
117
29.512821
115
0.65107
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,222
QueryWidget.h
Studio3T_robomongo/src/robomongo/gui/widgets/workarea/QueryWidget.h
#pragma once #include <QWidget> #include <QDockWidget> #include <QCloseEvent> QT_BEGIN_NAMESPACE class QLabel; class QVBoxLayout; class QMainWindow; class QPushButton; class QFrame; QT_END_NAMESPACE #include "robomongo/core/Core.h" #include "robomongo/core/domain/MongoShellResult.h" namespace Robomongo { class ...
3,147
C++
.h
103
23.097087
83
0.645418
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,223
OutputWidget.h
Studio3T_robomongo/src/robomongo/gui/widgets/workarea/OutputWidget.h
#pragma once #include <QTabWidget> QT_BEGIN_NAMESPACE class QSplitter; QT_END_NAMESPACE #include "robomongo/core/domain/MongoShellResult.h" #include "robomongo/core/Enums.h" namespace Robomongo { class OutputItemContentWidget; class ProgressBarPopup; class MongoShell; class OutputWidget : public QTa...
1,848
C++
.h
51
28.607843
88
0.688901
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,224
BsonTreeModel.h
Studio3T_robomongo/src/robomongo/gui/widgets/workarea/BsonTreeModel.h
#pragma once #include <vector> #include <QAbstractItemModel> #include "robomongo/core/Core.h" namespace Robomongo { class BsonTreeItem; class BsonTreeModel : public QAbstractItemModel { Q_OBJECT public: typedef QAbstractItemModel BaseClass; static const QIcon &getIcon(BsonTree...
1,360
C++
.h
30
38.766667
104
0.724112
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,225
IndicatorLabel.h
Studio3T_robomongo/src/robomongo/gui/widgets/workarea/IndicatorLabel.h
#pragma once #include <QWidget> QT_BEGIN_NAMESPACE class QIcon; class QLabel; QT_END_NAMESPACE namespace Robomongo { class Indicator : public QWidget { Q_OBJECT public: Indicator(const QIcon &icon, const QString &text = QString()); void setText(const QString &text); private: ...
409
C++
.h
19
17.157895
70
0.681347
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,226
OutputItemContentWidget.h
Studio3T_robomongo/src/robomongo/gui/widgets/workarea/OutputItemContentWidget.h
#pragma once #include <QStackedWidget> #include "robomongo/core/Core.h" #include "robomongo/core/domain/MongoQueryInfo.h" #include "robomongo/core/domain/MongoAggregateInfo.h" #include "robomongo/core/Enums.h" #include <vector> namespace Robomongo { class FindFrame; class BsonTreeView; class BsonTableVie...
3,857
C++
.h
90
33.522222
105
0.673959
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,227
WorkAreaTabWidget.h
Studio3T_robomongo/src/robomongo/gui/widgets/workarea/WorkAreaTabWidget.h
#pragma once #include <QTabWidget> namespace Robomongo { class QueryWidget; class OpeningShellEvent; class WelcomeTab; /** * @brief WorkArea tab widget. Each tab represents MongoDB shell. */ class WorkAreaTabWidget : public QTabWidget { Q_OBJECT public: /** ...
1,604
C++
.h
48
26.020833
76
0.663648
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,228
BsonTreeItem.h
Studio3T_robomongo/src/robomongo/gui/widgets/workarea/BsonTreeItem.h
#pragma once #include <vector> #include <QObject> #include <mongo/bson/bsonobj.h> #include <mongo/bson/bsonelement.h> namespace Robomongo { /** * @brief BSON tree item (represents array or object) */ struct BsonItemFields { QString _key; QString _value; mongo::BSONType _t...
1,944
C++
.h
60
24.666667
86
0.628877
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,229
ProgressBarPopup.h
Studio3T_robomongo/src/robomongo/gui/widgets/workarea/ProgressBarPopup.h
#pragma once #include <QFrame> QT_BEGIN_NAMESPACE class QLabel; QT_END_NAMESPACE namespace Robomongo { class ProgressBarPopup : public QFrame { Q_OBJECT public: ProgressBarPopup(QWidget *parent = NULL); enum {heightProgress = 16, widthProgress = 164, height = heightProgress+20, wi...
402
C++
.h
17
19.352941
112
0.695538
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,230
GuiConstants.h
Studio3T_robomongo/src/robomongo/gui/utils/GuiConstants.h
#pragma once namespace Robomongo { namespace HighDpiConstants { int const WIN_HIGH_DPI_BUTTON_HEIGHT = 23; int const MACOS_HIGH_DPI_BUTTON_HEIGHT = 34; } enum AuthMechanism { SCRAM_SHA_1, SCRAM_SHA_256, MONGODB_CR }; inline AuthMechanism authMechanismFr...
636
C++
.h
20
25.65
69
0.588907
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,231
ComboBoxUtils.h
Studio3T_robomongo/src/robomongo/gui/utils/ComboBoxUtils.h
#pragma once #include <QComboBox> namespace Robomongo { namespace utils { /** * @brief This function behaves identically to Qt5 QComboBox::setCurrentText(). * We are using this function in order to support Qt4 */ void setCurrentText(QComboBox *comboBox, const QString...
337
C++
.h
13
20.538462
87
0.661491
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,232
DialogUtils.h
Studio3T_robomongo/src/robomongo/gui/utils/DialogUtils.h
#pragma once #include <QMessageBox> namespace Robomongo { namespace utils { int questionDialog(QWidget *parent, const QString &actionText, const QString &itemText, const QString &valueText); int questionDialog(QWidget *parent, const QString &actionText, const QString &itemText, const QString ...
371
C++
.h
10
32.9
151
0.756303
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,233
PlainJavaScriptEditor.h
Studio3T_robomongo/src/robomongo/gui/editors/PlainJavaScriptEditor.h
#pragma once #include <Qsci/qsciscintilla.h> namespace Robomongo { class RoboScintilla : public QsciScintilla { Q_OBJECT public: typedef QsciScintilla BaseClass; enum { rowNumberWidth = 6, indentationWidth = 4 }; static const QColor marginsBackgroundColor; static co...
1,146
C++
.h
33
27.606061
73
0.690154
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,234
FindFrame.h
Studio3T_robomongo/src/robomongo/gui/editors/FindFrame.h
#pragma once #include <QFrame> QT_BEGIN_NAMESPACE class QTextEdit; class QPushButton; class QToolButton; class QCheckBox; class QLineEdit; QT_END_NAMESPACE class QsciScintilla; namespace Robomongo { class RoboScintilla; class FindFrame : public QFrame { Q_OBJECT public: enum ...
1,288
C++
.h
50
19.18
72
0.646629
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,235
JSLexer.h
Studio3T_robomongo/src/robomongo/gui/editors/JSLexer.h
#pragma once #include <QObject> #include <QColor> #include <Qsci/qscilexerjavascript.h> namespace Robomongo { class JSLexer : public QsciLexerJavaScript { Q_OBJECT // This Q_OBJECT macro produce the following error for VC, but works on GCC: // unresolved external symbol "public: static...
566
C++
.h
19
24.421053
84
0.680147
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,236
libssh2_config.h
Studio3T_robomongo/src/third-party/libssh2-1.9.0/sources/vms/libssh2_config.h
#ifndef LIBSSH2_CONFIG_H #ifdef __VMS #define LIBSSH2_CONFIG_H /* VMS specific libssh2_config.h */ #define ssize_t SSIZE_T typedef unsigned int uint32_t ; typedef unsigned int socklen_t; /* missing in headers on VMS */ /* Have's */ #define HAVE_UNISTD_H #define HAVE_STDLIB_H #define HAVE_INTTYPES_H #define HAVE_...
2,468
C++
.h
63
36.587302
77
0.715006
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
true
true
false
false
false
false
false
false
15,237
libssh2.h
Studio3T_robomongo/src/third-party/libssh2-1.9.0/sources/include/libssh2.h
/* Copyright (c) 2004-2009, Sara Golemon <sarag@libssh2.org> * Copyright (c) 2009-2015 Daniel Stenberg * Copyright (c) 2010 Simon Josefsson <simon@josefsson.org> * All rights reserved. * * Redistribution and use in source and binary forms, * with or without modification, are permitted provided * that the followi...
54,006
C++
.h
1,175
37.486809
79
0.619916
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
true
false
false
false
false
false
false
15,238
libssh2_publickey.h
Studio3T_robomongo/src/third-party/libssh2-1.9.0/sources/include/libssh2_publickey.h
/* Copyright (c) 2004-2006, Sara Golemon <sarag@libssh2.org> * 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 the above * copyright noti...
4,804
C++
.h
106
38.801887
79
0.681119
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
true
true
false
false
false
false
false
false
15,239
libssh2_sftp.h
Studio3T_robomongo/src/third-party/libssh2-1.9.0/sources/include/libssh2_sftp.h
/* Copyright (c) 2004-2008, Sara Golemon <sarag@libssh2.org> * 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 the above * copyright noti...
15,714
C++
.h
309
43.653722
79
0.625269
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
true
false
false
false
false
false
false
15,240
macros.h
Studio3T_robomongo/src/third-party/libssh2-1.9.0/sources/os400/macros.h
/* * Copyright (C) 2015 Patrick Monnerat, D+H <patrick.monnerat@dh.com> * 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 the above * co...
8,312
C++
.h
161
42.47205
80
0.678905
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,241
libssh2_config.h
Studio3T_robomongo/src/third-party/libssh2-1.9.0/sources/os400/libssh2_config.h
/* * Copyright (C) 2015 Patrick Monnerat, D+H <patrick.monnerat@dh.com> * 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 the above * co...
8,759
C++
.h
217
38.723502
79
0.73747
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
true
true
false
false
false
false
false
false
15,242
libssh2_ccsid.h
Studio3T_robomongo/src/third-party/libssh2-1.9.0/sources/os400/libssh2_ccsid.h
/* * Copyright (C) 2015 Patrick Monnerat, D+H <patrick.monnerat@dh.com> * 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 the above * co...
2,396
C++
.h
55
39.927273
75
0.740677
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,243
stdio.h
Studio3T_robomongo/src/third-party/libssh2-1.9.0/sources/os400/include/stdio.h
/* * Copyright (C) 2015 Patrick Monnerat, D+H <patrick.monnerat@dh.com> * 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 the above * co...
2,570
C++
.h
64
36.90625
80
0.71297
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,244
alloca.h
Studio3T_robomongo/src/third-party/libssh2-1.9.0/sources/os400/include/alloca.h
/* * Copyright (C) 2015 Patrick Monnerat, D+H <patrick.monnerat@dh.com> * 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 the above * co...
1,824
C++
.h
44
39.5
69
0.764374
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,245
socket.h
Studio3T_robomongo/src/third-party/libssh2-1.9.0/sources/os400/include/sys/socket.h
/* * Copyright (C) 2015 Patrick Monnerat, D+H <patrick.monnerat@dh.com> * 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 the above * co...
2,409
C++
.h
66
34.242424
76
0.747215
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
true
true
false
false
false
false
false
false
15,246
libssh2_config.h
Studio3T_robomongo/src/third-party/libssh2-1.9.0/sources/win32/libssh2_config.h
#ifndef LIBSSH2_CONFIG_H #define LIBSSH2_CONFIG_H #ifndef WIN32 #define WIN32 #endif #ifndef _CRT_SECURE_NO_DEPRECATE #define _CRT_SECURE_NO_DEPRECATE 1 #endif /* _CRT_SECURE_NO_DEPRECATE */ #include <winsock2.h> #include <mswsock.h> #include <ws2tcpip.h> #ifdef __MINGW32__ #define HAVE_UNISTD_H #define HAVE_INTTYPES...
952
C++
.h
40
22.625
60
0.774586
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
true
false
false
false
false
false
false
15,247
session_fixture.h
Studio3T_robomongo/src/third-party/libssh2-1.9.0/sources/tests/session_fixture.h
/* Copyright (C) 2016 Alexander Lamaison * 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 the above * copyright notice, this list of con...
1,846
C++
.h
43
41.023256
64
0.779322
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
true
true
false
false
false
false
false
false
15,248
openssh_fixture.h
Studio3T_robomongo/src/third-party/libssh2-1.9.0/sources/tests/openssh_fixture.h
/* Copyright (C) 2016 Alexander Lamaison * 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 the above * copyright notice, this list of con...
1,795
C++
.h
42
40.833333
64
0.778286
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,249
blf.h
Studio3T_robomongo/src/third-party/libssh2-1.9.0/sources/src/blf.h
/* $OpenBSD: blf.h,v 1.7 2007/03/14 17:59:41 grunk Exp $ */ /* * Blowfish - a fast block cipher designed by Bruce Schneier * * Copyright 1997 Niels Provos <provos@physnet.uni-hamburg.de> * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted pr...
3,775
C++
.h
76
47.315789
76
0.715604
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
true
false
false
false
false
false
false
15,250
crypto.h
Studio3T_robomongo/src/third-party/libssh2-1.9.0/sources/src/crypto.h
/* Copyright (C) 2009, 2010 Simon Josefsson * Copyright (C) 2006, 2007 The Written Word, Inc. All rights reserved. * Copyright (C) 2010-2019 Daniel Stenberg * * Redistribution and use in source and binary forms, * with or without modification, are permitted provided * that the following conditions are met: * *...
10,244
C++
.h
216
32.25463
79
0.55042
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,251
wincng.h
Studio3T_robomongo/src/third-party/libssh2-1.9.0/sources/src/wincng.h
/* * Copyright (C) 2013-2015 Marc Hoersken <info@marc-hoersken.de> * 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 the above * copyrig...
21,409
C++
.h
502
33.860558
78
0.608408
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
true
false
false
false
false
false
false
15,252
mbedtls.h
Studio3T_robomongo/src/third-party/libssh2-1.9.0/sources/src/mbedtls.h
/* Copyright (c) 2016, Art <https://github.com/wildart> * 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 the above * copyright notice, t...
16,156
C++
.h
372
36.258065
76
0.610605
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
true
false
false
false
false
false
false
15,253
os400qc3.h
Studio3T_robomongo/src/third-party/libssh2-1.9.0/sources/src/os400qc3.h
/* * Copyright (C) 2015-2016 Patrick Monnerat, D+H <patrick.monnerat@dh.com> * 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 the above *...
17,387
C++
.h
339
43.893805
79
0.538556
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,254
misc.h
Studio3T_robomongo/src/third-party/libssh2-1.9.0/sources/src/misc.h
#ifndef __LIBSSH2_MISC_H #define __LIBSSH2_MISC_H /* Copyright (c) 2009-2019 by Daniel Stenberg * * 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 mus...
4,838
C++
.h
108
40.638889
78
0.720348
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
true
true
false
false
false
false
false
false
15,255
packet.h
Studio3T_robomongo/src/third-party/libssh2-1.9.0/sources/src/packet.h
#ifndef LIBSSH2_PACKET_H #define LIBSSH2_PACKET_H /* * Copyright (C) 2010 by Daniel Stenberg * Author: Daniel Stenberg <daniel@haxx.se> * * Redistribution and use in source and binary forms, * with or without modification, are permitted provided * that the following conditions are met: * * Redistributions of ...
3,500
C++
.h
72
38.569444
77
0.638435
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
15,256
sftp.h
Studio3T_robomongo/src/third-party/libssh2-1.9.0/sources/src/sftp.h
#ifndef _LIBSSH2_SFTP_H #define _LIBSSH2_SFTP_H /* * Copyright (C) 2010 - 2012 by Daniel Stenberg * Author: Daniel Stenberg <daniel@haxx.se> * * Redistribution and use in source and binary forms, * with or without modification, are permitted provided * that the following conditions are met: * * Redistribution...
7,690
C++
.h
196
33.969388
77
0.685856
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
true
false
false
false
false
false
false
15,257
userauth.h
Studio3T_robomongo/src/third-party/libssh2-1.9.0/sources/src/userauth.h
#ifndef LIBSSH2_USERAUTH_H #define LIBSSH2_USERAUTH_H /* Copyright (c) 2004-2007, Sara Golemon <sarag@libssh2.org> * Copyright (c) 2009-2010 by Daniel Stenberg * All rights reserved. * * Redistribution and use in source and binary forms, * with or without modification, are permitted provided * that the following ...
2,204
C++
.h
49
39.204082
64
0.708778
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
true
true
false
false
false
false
false
false
15,258
libssh2_priv.h
Studio3T_robomongo/src/third-party/libssh2-1.9.0/sources/src/libssh2_priv.h
/* Copyright (c) 2004-2008, 2010, Sara Golemon <sarag@libssh2.org> * Copyright (c) 2009-2014 by Daniel Stenberg * Copyright (c) 2010 Simon Josefsson * All rights reserved. * * Redistribution and use in source and binary forms, * with or without modification, are permitted provided * that the following conditions...
39,115
C++
.h
966
34.847826
79
0.663858
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
true
false
false
false
false
false
false
15,259
channel.h
Studio3T_robomongo/src/third-party/libssh2-1.9.0/sources/src/channel.h
#ifndef __LIBSSH2_CHANNEL_H #define __LIBSSH2_CHANNEL_H /* Copyright (c) 2008-2010 by Daniel Stenberg * * 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...
4,760
C++
.h
125
32.952
78
0.698853
Studio3T/robomongo
9,296
797
724
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
true
true
false
false
false
false
false
false