Searched refs:numCols (Results 1 - 18 of 18) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/
H A Dradiocmn.cpp70 numCols = GetColumnCount(), local
82 item -= numCols;
106 item += numCols;
142 if ( item % (horz ? numCols : numRows) )
154 if ( (item + 1) % (horz ? numCols : numRows) )
H A Ddb.cpp425 numCols = 0;
2426 * -- int *numCols,const wxChar *userID ) ------
2719 wxDbColInf *wxDb::GetColumns(const wxString &tableName, UWORD *numCols, const wxChar *userID) argument
2722 // only for a single table, and if 'numCols' is not NULL, the number of
2723 // columns stored in the returned wxDbColInf is set in '*numCols'
2804 if (numCols)
2805 *numCols = 0;
2880 if (numCols)
2881 *numCols = 0;
2891 if (numCols)
2976 GetColumns(const wxString &tableName, int *numCols, const wxChar *userID) argument
[all...]
H A Ddbtable.cpp2366 wxDbColDataPtr* wxDbTable::SetColDefs(wxDbColInf *pColInfs, UWORD numCols)
2375 pColDataPtrs = new wxDbColDataPtr[numCols+1];
2377 for (index = 0; index < numCols; index++)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/demos/dbbrowse/
H A Dbrowsedb.h73 wxDbColInf* OnGetColumns(wxChar *tableName, UWORD numCols,int Quiet);
H A Ddbgrid.cpp106 CreateGrid(i,(ct_BrowserDB->pTableInf+x)->numCols); // Records , Columns
107 for (y=0;y<(ct_BrowserDB->pTableInf+x)->numCols;y++) // Loop through the Fields
111 } // for (y=0;y<(ct_BrowserDB->pTableInf+x)->numCols;y++)
112 SetColSize(((ct_BrowserDB->pTableInf+x)->numCols-1),120); // Make the last Column Wider
117 (db_Br+i_Which)->OnGetNext((ct_BrowserDB->pTableInf+ValidTable)->numCols,false);
118 for (y=0;y<(ct_BrowserDB->pTableInf+ValidTable)->numCols;y++) // Loop through the Fields
H A Dbrowsedb.cpp411 wxDbColInf* BrowserDB::OnGetColumns(wxChar *tableName, UWORD numCols, int WXUNUSED(Quiet)) argument
416 cl_BrowserDB = db_BrowserDB->GetColumns(tableName,&numCols,UName);
417 // cl_BrowserDB->pColFor = new wxDbColFor[numCols];
418 for (i=0;i<numCols;i++)
H A Ddbtree.cpp146 (ct_BrowserDB->pTableInf+x)->pColInf = (pDoc->db_Br+i_Which)->OnGetColumns((ct_BrowserDB->pTableInf+x)->tableName,(ct_BrowserDB->pTableInf+x)->numCols,false);
153 (ct_BrowserDB->pTableInf+x)->numCols,(ct_BrowserDB->pTableInf+x)->tableRemarks);
159 (ct_BrowserDB->pTableInf+x)->numCols,(ct_BrowserDB->pTableInf+x)->tableRemarks);
162 for (y=0;y<(ct_BrowserDB->pTableInf+x)->numCols;y++)
211 } // for (y=0;y<(ct_BrowserDB->pTableInf+x)->numCols;y++)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/generic/
H A Dgridsel.cpp1050 void wxGridSelection::UpdateCols( size_t pos, int numCols )
1061 if (numCols > 0)
1064 coords.SetCol(col + numCols);
1066 else if (numCols < 0)
1069 if ((size_t)col >= pos - numCols)
1072 coords.SetCol(col + numCols);
1095 if (numCols > 0)
1098 coords2.SetCol(col2 + numCols);
1100 coords1.SetCol(col1 + numCols);
1102 else if (numCols <
[all...]
H A Dgrid.cpp332 void UpdateAttrCols( size_t pos, int numCols );
2747 void wxGridCellAttrData::UpdateAttrCols( size_t pos, int numCols )
2756 if ( numCols > 0 )
2759 coords.SetCol(col + numCols);
2761 else if (numCols < 0)
2764 if ((size_t)col >= pos - numCols)
2767 coords.SetCol(col + numCols);
3036 void wxGridCellAttrProvider::UpdateAttrCols( size_t pos, int numCols )
3040 m_data->m_cellAttrs.UpdateAttrCols( pos, numCols );
3042 m_data->m_colAttrs.UpdateAttrRowsOrCols( pos, numCols );
3533 int numRows, numCols; local
4478 CreateGrid( int numRows, int numCols, wxGrid::wxGridSelectionModes selmode ) argument
5048 int numCols = msg.GetCommandInt2(); local
5113 int numCols = msg.GetCommandInt(); local
5167 int numCols = msg.GetCommandInt2(); local
6793 InsertCols( int pos, int numCols, bool WXUNUSED(updateLabels) ) argument
6817 AppendCols( int numCols, bool WXUNUSED(updateLabels) ) argument
6838 DeleteCols( int pos, int numCols, bool WXUNUSED(updateLabels) ) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/generic/
H A Dgridsel.h52 void UpdateCols( size_t pos, int numCols );
H A Dgrid.h810 void UpdateAttrCols( size_t pos, int numCols );
868 virtual bool InsertCols( size_t pos = 0, size_t numCols = 1 );
869 virtual bool AppendCols( size_t numCols = 1 );
870 virtual bool DeleteCols( size_t pos = 0, size_t numCols = 1 );
975 wxGridStringTable( int numRows, int numCols );
992 bool InsertCols( size_t pos = 0, size_t numCols = 1 );
993 bool AppendCols( size_t numCols = 1 );
994 bool DeleteCols( size_t pos = 0, size_t numCols = 1 );
1107 bool CreateGrid( int numRows, int numCols,
1149 bool InsertCols( int pos = 0, int numCols
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/include/wx/gizmos/
H A Dmulticell.h134 wxMultiCellCanvas(wxWindow *parent, int numRows = 2, int numCols = 2);
137 void Resize(int numRows, int numCols);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Dgridtbl.tex141 \func{bool}{InsertCols}{\param{size\_t }{pos = 0}, \param{size\_t }{numCols = 1}}
146 \func{bool}{AppendCols}{\param{size\_t }{numCols = 1}}
151 \func{bool}{DeleteCols}{\param{size\_t }{pos = 0}, \param{size\_t }{numCols = 1}}
206 \func{void}{UpdateAttrCols}{\param{size\_t }{pos}, \param{int }{numCols}}
H A Dgrid.tex150 \func{bool}{AppendCols}{\param{int }{numCols = 1}, \param{bool }{updateLabels = true}}
347 \func{bool}{CreateGrid}{\param{int }{numRows}, \param{int }{numCols}, \param{wxGrid::wxGridSelectionModes }{selmode = wxGrid::wxGridSelectCells}}
362 \func{bool}{DeleteCols}{\param{int }{pos = 0}, \param{int }{numCols = 1}, \param{bool }{updateLabels = true}}
1146 \func{bool}{InsertCols}{\param{int }{pos = 0}, \param{int }{numCols = 1}, \param{bool }{updateLabels = true}}
H A Ddb.tex820 \func{wxDbColInf *}{GetColumns}{\param{const wxString \&}{tableName}, \param{UWORD *}{numCols}, \param{const wxChar *}{userID=NULL}}
827 \docparam{numCols}{Pointer to a UWORD which will hold a count of the number of columns returned by this function}
3579 \func{wxDbColDataPtr *}{SetColDefs}{\param{wxDbColInf *}{colInfs}, \param{UWORD }{numCols}}
3631 all the information necessary to create {\it numCols} column definitions.}
3632 \docparam{numCols}{Number of elements of wxDbColInf type that are pointed
4011 numCols = 0;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/src/gizmos/
H A Dmulticell.cpp611 wxMultiCellCanvas :: wxMultiCellCanvas(wxWindow *par, int numRows, int numCols) argument
612 : wxFlexGridSizer(numRows, numCols, 0, 0)
614 m_cells = (wxCell **)calloc(numRows * numCols, sizeof(wxCell *));
618 m_maxCols = numCols;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/
H A Ddb.h434 UWORD numCols; // How many Columns does this Table have: GetColumnCount(..); member in class:wxDbTableInf
680 wxDbColInf *GetColumns(const wxString &tableName, UWORD *numCols, const wxChar *userID=NULL);
H A Ddbtable.h296 wxDbColDataPtr *SetColDefs(wxDbColInf *colInfs, UWORD numCols);

Completed in 259 milliseconds